{% extends "admin/base_site.html" %} {% load i18n staticfiles %} {% block extrahead %} {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}
{% csrf_token %} {% for include_field, filter_field, filter_option_fields in entries_form %} {% endfor %}
{% trans "Field" %} {% trans "Include" %} {% trans "Filter by" %}
{{ include_field.label_tag }} {{ include_field }} {{ filter_field }}
{% for option_field in filter_option_fields %} {{ option_field.label_tag }} {{ option_field }} {% endfor %}
 
{% if submitted %}

{% trans "Entries" %}

{% for row in entries_form.rows %} {% if forloop.first %} {% if can_delete_entries %} {% endif %} {% for column in entries_form.columns %} {{ column }} {% endfor %} {% endif %} {% if can_delete_entries %} {% endif %} {% for field in row %} {% if not forloop.first %} {{ field }} {% endif %} {% endfor %} {% if forloop.last %}
{% if can_delete_entries %} {% endif %} {% endif %} {% empty %}

{% trans "No entries to display" %}

{% endfor %} {% endif %}
{% endblock %}