Changes between Initial Version and Version 3 of Ticket #6646


Ignore:
Timestamp:
Jun 23, 2008, 12:47:06 PM (16 years ago)
Author:
Ramiro Morales
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #6646

    • Property Component Template systemDocumentation
    • Property Triage Stage UnreviewedAccepted
  • Ticket #6646 – Description

    initial v3  
    33For example:
    44
    5 base.html
     5base.html:
     6{{{
    67{% if is_satchmo %}
    78{% include "satchmo_base.html" %}
     
    910{% include "journal_base.html" %}
    1011{% endif %}
     12}}}
    1113
    1214journal_base.html contains the following block:
     15{{{
    1316{% block content%}{% endblock %}
     17}}}
    1418
    1519view_template.html extends base.html (with the context variable is_satchmo == False).  view_template.html contains {% block content%}{% endblock %} which should filled with data from the view's context variable.
Back to Top