{% extends "admin/base_site.html" %} {% load i18n admin_urls static admin_list forge_icons %} {% block extrastyle %} {{ block.super }} {% if cl.formset or action_form %} {% endif %} {% endblock %} {% block extrahead %} {{ block.super }} {{ media.js }} {% endblock %} {% block content %}
{% include "admin/includes/forge_sidebar.html" %}
{% include "admin/includes/forge_topbar.html" with subtitle="Browse, filter and manage records" %}

{{ cl.opts.verbose_name_plural|capfirst }}

{% if has_add_permission %} {% forge_icon "plus" "h-4 w-4" %} Add {{ cl.opts.verbose_name }} {% endif %}
{% if cl.search_fields %} {% endif %} {% if cl.filter_specs %}
Active filters {% for spec in cl.filter_specs %} {% for key, value in spec.used_parameters.items %} {{ key }}: {{ value }} {% endfor %} {% endfor %}
{% endif %}
{% csrf_token %} {% if cl.formset %}
{{ cl.formset.management_form }}
{% endif %} {% if action_form and actions_on_top and cl.show_admin_actions %}

Bulk actions

{% admin_actions %}
{% endif %} {% if cl.result_count %} {% result_list cl %} {% if action_form and actions_on_bottom and cl.show_admin_actions %}

Bulk actions

{% admin_actions %}
{% endif %} {% pagination cl %} {% else %}
{% forge_icon "inbox" "h-7 w-7" %}

No results found

This page yielded no results. Create a new item or reset your filters.

{% endif %}
{% endblock %}