+
+ {% if not is_popup %}
+
+
+
+ {% block breadcrumbs %}
+
+ {% if not is_popup and is_nav_sidebar_enabled %}
+ {% block nav-sidebar %}
+ {% include "admin/nav_sidebar.html" %}
+ {% endblock %}
+ {% endif %}
+
+ {% block messages %}
+ {% if messages %}
+
{% for message in messages %}
+ - {{ message|capfirst }}
+ {% endfor %}
+ {% endif %}
+ {% endblock messages %}
+
+
+ {% block pretitle %}{% endblock %}
+ {% block content_title %}{% if title %}
{{ title }}
{% endif %}{% endblock %}
+ {% block content_subtitle %}{% if subtitle %}{{ subtitle }}
{% endif %}{% endblock %}
+ {% block content %}
+ {% block object-tools %}{% endblock %}
+ {{ content }}
+ {% endblock %}
+ {% block sidebar %}{% endblock %}
+
+
+
+ {% block footer %}{% endblock %}
+
+