{% extends "admin/base_site.html" %} {% load i18n %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block content %}
{% if import_export or fixture_status %}
{% if import_export %} {% trans "Export" %}
{% csrf_token %} {% trans 'Import' %}
{% endif %} {% if fixture_status %} {% blocktrans with pending_count=fixture_status.pending|length total_count=fixture_status.total|length %} Unapplied fixtures: {{ pending_count }} ({{ total_count }} total) {% endblocktrans %}
{% csrf_token %}
{% csrf_token %}
{% endif %}
{% endif %} {% if sections %} {% for section in sections %} {% for item in section.items %} {% endfor %} {% endfor %}
{% trans "App" %} {% trans "Model" %} {% trans "Custom" %} {% trans "Entity" %} {% trans "Fixture" %}
{{ section.opts.app_config.verbose_name|capfirst }} {{ section.opts.verbose_name|capfirst }} {% if item.custom %} ✓ {% else %} ✗ {% endif %} {{ item.label }} {{ item.fixture.name }}
{% else %}

{% trans 'None available' %}

{% endif %}
{% endblock %}