{% extends 'ohmyadmin/base.html' %} {% import 'ohmyadmin/actions.html' as actions %} {% block main %}
{% include 'ohmyadmin/breadcrumbs/breadcrumbs.html' %}

{% block page_title %}{% if page_title is defined %}{{ page_title }} {% endif %}{% endblock %}

{% if page_description is defined %}
{{ page_description }}
{% endif %}
{% block page_actions %} {% call actions.action_toolbar() %} {% if model is undefined %} {% set model = none %} {% endif %} {% for action in screen.get_page_actions() %} {{ actions.action_button(request, action, screen, model) }} {% endfor %} {% endcall %} {% endblock %}
{% if screen.get_page_metrics() %} {% include 'ohmyadmin/screens/metrics.html' %} {% endif %} {% block content %}{% endblock %}
{% endblock %}