Changes between Initial Version and Version 2 of Ticket #26501


Ignore:
Timestamp:
Apr 14, 2016, 4:53:34 AM (8 years ago)
Author:
Thomas Güttler
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #26501

    • Property Summary Docs for reusable apps is missing {% extends "mypp/base.html" %}Docs for reusable apps is missing {% extends "base.html" %}
  • Ticket #26501 – Description

    initial v2  
    33  https://docs.djangoproject.com/en/1.9/intro/reusable-apps/
    44
    5 If a reusable wants to render a whole page, who to do this?
     5If a reusableapp wants to render a whole page, how to do this?
    66
    77I like the solution from here: http://stackoverflow.com/a/36552447/633961
     
    99The resusable app uses this in all its templates: {% extends "myreusableapp/base.html" %}
    1010
    11 And myreusableapp/base.html looks like this:
     11And `myreusableapp/base.html` looks like this:
    1212
    1313{% extends "base.html" %}
Back to Top