Changes between Initial Version and Version 2 of Ticket #26501
- Timestamp:
- Apr 14, 2016, 4:53:34 AM (9 years ago)
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 3 3 https://docs.djangoproject.com/en/1.9/intro/reusable-apps/ 4 4 5 If a reusable wants to render a whole page, whoto do this?5 If a reusableapp wants to render a whole page, how to do this? 6 6 7 7 I like the solution from here: http://stackoverflow.com/a/36552447/633961 … … 9 9 The resusable app uses this in all its templates: {% extends "myreusableapp/base.html" %} 10 10 11 And myreusableapp/base.htmllooks like this:11 And `myreusableapp/base.html` looks like this: 12 12 13 13 {% extends "base.html" %}