Skip to content

Instantly share code, notes, and snippets.

@okaram
Created September 13, 2012 16:51
Show Gist options
  • Save okaram/3715746 to your computer and use it in GitHub Desktop.
Save okaram/3715746 to your computer and use it in GitHub Desktop.
django templates, include, with
{% include "table_frag.html" %}
{% with 'Orlando' as name%}
{% include 'salutation.html'%}
{% endwith %}
{% if unreviewed_apps.count %}
<h2>Unreviewed Applications</h2>
{% with unreviewed_apps as apps%}
{% include "application_table_frag.html" %}
{% endwith %}
{% endif %}
{% if reviewed_apps.count %}
<h2>Reviewed Applications</h2>
{% with reviewed_apps as apps%}
{% include "application_table_frag.html" %}
{% endwith %}
{% endif %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment