{# extention of Flask-Admin base template for integration of the common menu and header. The extension based on the version v1.5.#} {% extends 'admin/base.html' %} {% block head_css %} {{ super() }} {% endblock %} {% block page_body %} {% include 'header.html' %}
{# store the jinja2 context for form_rules rendering logic #} {% set render_ctx = h.resolve_ctx() %} {% block body %}{% endblock %}
{% endblock %} {% block tail_js %} {{ super() }} {% endblock %}