{% extends "crud/base.html" %} {% block innercontent %}
{% block breadcrumbs %} {% if breadcrumbs %} {% endif %} {% endblock %}

{% block title %}{% if title %}{{ title }}{% else %}{{ object }}{% endif %}{% endblock %}

{% block localnavigation %} {% if localnavigationlist %}
{% endif %} {% endblock %} {% block topinfo %}{% endblock %} {% if not IS_POPUP %}
{% for button in defaultbuttons %}  {{ button.label }} {% endfor %} {% block extra_buttons %} {% for button in buttons %}  {{ button.label }} {% endfor %} {% endblock %}   {% if allow_report and object.get_report_url %} pdf {% endif %}
{% endif %} {% if tablist %}
{% endif %} {% block form %} {% if form %} {{ form }}
{% endif %} {% endblock %} {% block table %} {% include "crud/tablebuttons_nofilter.html" %} {% include "crud/table.html" %} {% endblock %} {% block tables %} {% for t in tables %} {% with t as table %} {% include "crud/tablebuttons_nofilter.html" %} {% include "crud/table.html" %} {% endwith %} {% endfor %} {% endblock %} {% block extracontent %} {% endblock %}

 

{% if tablist %}
{% endif %} {% block bottominfo %}{% endblock %} {% if helptext %}
{{ helptext|linebreaks }}
{% endif %}
{% endblock %}