{% extends "djadmin/admin_base.html" %} {% load djadmin_tags %} {% block title %}{{ opts.verbose_name_plural|capfirst }} - {{ site_title|default:"Django Admin" }}{% endblock %} {% block content %}
{# Header with model info #}

{{ opts.app_label|title }} - {{ opts.verbose_name_plural|capfirst }}

{# Info Bar with General Actions #}

{% if page_obj %} Showing {{ page_obj.start_index }}-{{ page_obj.end_index }} of {{ paginator.count }} {% else %} {{ object_list.count }} total {% endif %}

{% include "djadmin/includes/_action_buttons.html" with actions=filtered_general_actions default_css_class="primary" use_list_items=True %}
{# Bulk Actions Bar #} {% if filtered_bulk_actions %}
{% csrf_token %}
  • 0 selected
  • {% endif %} {# Table #} {% if filtered_bulk_actions %} {% endif %} {% for column in list_display %} {% endfor %} {% if record_actions %} {% endif %} {% for obj in object_list %} {% if filtered_bulk_actions %} {% endif %} {% for column in list_display %} {% endfor %} {% if record_actions %} {% endif %} {% empty %} {% endfor %}
    {% get_column_label column model model_admin %} {% render_column_header_icons column %} Actions
    {% get_column_value obj column model_admin %} {% include "djadmin/includes/_action_buttons.html" with actions=record_actions object=obj use_list_items=True %}

    No {{ opts.verbose_name_plural }} found.

    {% if filtered_general_actions %}

    {% include "djadmin/includes/_action_buttons.html" with actions=filtered_general_actions default_css_class="primary" %}

    {% endif %}
    {# Pagination #} {% if page_obj and paginator.num_pages > 1 %} {% endif %}
    {% endblock %} {% block extra_js %} {{ block.super }} {% if filtered_bulk_actions %} {% endif %} {% endblock %}