{% extends base_template|default:"handyhelpers_base.htm" %} {% load staticfiles %} {% block local_head %} {% include "handyhelpers/component/table_components.htm" %} {% endblock %} {% block content %}

{{ title }}: {% if subtitle %}{{ subtitle }}{% endif %}

{# To include a create form, exposed via modal, include create_form (dict) in the context of your view. The create_from must include modal_name and link_title fields #} {% if create_form %} {% if create_form.link_title %} {{ create_form.link_title }} {% endif %} {% endif %} {# To include a filter form, exposed via modal, include filter_form (dict) in the context of your view. The filter_from must include modal_name and link_title fields #} {% if filter_form %} {% if filter_form.link_title %} {{ filter_form.link_title }} {% endif %} {% if filter_form.undo and request.META.QUERY_STRING %} {% endif %} {% endif %}
{% include table %}
{% include 'handyhelpers/component/modals.htm' %} {# include generic modal form for the create form if passed from the view #} {% with create_form as form_data %} {% include 'handyhelpers/generic/generic_modal_form.htm' %} {% endwith %} {# include generic modal form for the filter form if passed from the view #} {% with filter_form as form_data %} {% include 'handyhelpers/generic/generic_modal_form.htm' %} {% endwith %} {# include custom modal html/js template if passed in from the view #} {% if modals %} {% include modals %} {% endif %} {% endblock %}