{% extends "theme_one.html" %} {% load i18n static common crispy_forms_tags utils_tags crispy_extra django_tables2 %} {% block head_title %}{{ view.page_header }}{% endblock %} {% block head_media_css %} {% if form or inlines %} {% merge_media form inlines as media %} {{ media.css }} {% endif %} {{ block.super }} {% endblock %} {% block body_content %}

{{ view.page_header }}

{% if view.get_back_url %} {% trans 'Back' %} {% endif %} {% if view.get_extra_buttons %} {% for btn in view.get_extra_buttons %} {{ btn.text }} {% endfor %} {% endif %}
{% include 'generic_views/partial/form_view.parial.html' %} {% if table %}
{% include 'generic_views/partial/table_index_count.html' %} {% render_table table 'generic_views/partial/list_view_table.partial.html' %}
{% endif %}
{% endblock body_content %} {% block body_js %} {{ block.super }} {% if form or inlines %} {% merge_media form inlines as media %} {{ media.js }} {% endif %} {# #} {% endblock body_js %}