{% import 'admin/layout.html' as layout with context -%} {% import 'admin/static.html' as admin_static with context %} {% block title %}{% if admin_view.category %}{{ admin_view.category }} - {% endif %}{{ admin_view.name }} - {{ admin_view.admin.name }}{% endblock title %} {% block head_meta %} {% endblock head_meta %} {% block head_css %} {% if admin_view.extra_css %} {% for css_url in admin_view.extra_css %} {% endfor %} {% endif %} {% endblock head_css %} {% block head %} {% endblock head %} {% block head_tail %} {% endblock head_tail %} {% block page_body %}
{% if current_user.is_authenticated %}
{% block brand %} {% endblock brand %}
{% endif %} {% block messages %} {{ layout.messages() }} {% endblock messages %} {# store the jinja2 context for form_rules rendering logic #} {% set render_ctx = h.resolve_ctx() %} {% block body %} {% endblock body %} {% if current_user.is_authenticated %}
{% endif %}
{% endblock page_body %} {% block tail_js %} {% if admin_view.extra_js %} {% for js_url in admin_view.extra_js %} {% endfor %} {% endif %} {% if admin_view.name=="Home" %} {% endif %} {% endblock tail_js %} {% block tail %} {% endblock tail %}