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

{{ view.page_header }}

{% if view.get_back_url %} {% trans 'Back' %} {% endif %} {% if view.add_url %} {% trans 'Add' %} {% endif %} {% if view.get_extra_buttons %} {% for btn in view.get_extra_buttons %} {{ btn.text }} {% endfor %} {% endif %}
{% with view.get_card_data as cards_data %}
{% for item in cards_data %}
{{ item.name }}
{{ item.info }}
{% endfor %}
{% endwith %} {% if form %}
{% with form_helper=form.helper|disable_form_media %} {% crispy form form_helper %} {% endwith %}
{% endif %}
{#
#} {# {% csrf_token %}#} {# {{ form.as_p }}#} {# #} {#
#} {# {% with form_helper=form.helper|disable_form_media %}#} {# {% crispy form form_helper %}#} {# {% endwith %}#} {% endblock body_content %} {% block body_js %} {{ block.super }} {% merge_media form inlines as media %} {{ media.js|js_defer }} {% endblock body_js %}