{% extends 'ohmyadmin/app.html' %} {% import 'ohmyadmin/icons.html' as icons %} {% import 'ohmyadmin/actions.html' as actions %} {% block page_actions %} {% call actions.action_toolbar() %} {% for action in screen.actions %} {{ actions.action_button(request, action, screen) }} {% endfor %} {% endcall %} {% endblock %} {% block content %}
{% if screen.metrics %}
{% for metric in screen.metrics %} {% set update_interval = metric.update_interval %}
{% endfor %}
{% endif %}
{% if screen.searchable %} {% endif %}
{% if screen.batch_actions %}
{% endif %}
{% if screen.filters|length > 2 %}
{% include 'ohmyadmin/screens/table/filters_bar.html' %}
{% endif %}
{% include 'ohmyadmin/screens/table/table.html' %}
{% endblock %}