{% extends "admin/base.html" %} {% block title %}{{ admin.display_name_plural }}{% endblock %} {% block breadcrumbs %}
{{ app_label }} {{ admin.display_name_plural }}
{% endblock %} {% block page_actions %} {% if user_perms.add and 'add' not in admin.exclude_actions %} Add {{ admin.display_name }} {% endif %} {% endblock %} {% block content %}
{% if model_errors %}
{% for error in model_errors %}

{{ error.title }}

{{ error.detail }}

{% if error.hint %}

{{ error.hint }}

{% endif %}
{% endfor %}
{% endif %}
{% if admin.search_fields %}
{% endif %} {% for filter_name in admin.list_filter %}
{% endfor %}
Active filters: {% for filter_name in admin.list_filter %} {% endfor %}
{% set admin_actions = admin.get_actions_metadata() %} {% if admin_actions %}
Ações rápidas {% for action in admin_actions %} {% if not action.requires_selection %} {% endif %} {% endfor %}
{% endif %}
{% if user_perms.delete and 'delete' not in admin.exclude_actions %} {% endif %} {% for action in admin.get_actions_metadata() %} {% if action.requires_selection %} {% endif %} {% endfor %}

Loading...

No {{ admin.display_name_plural | lower }} found

{% if user_perms.add and 'add' not in admin.exclude_actions %} Add {{ admin.display_name }} {% endif %}
{% block extra_js %} {% endblock %} {% endblock %}