{% extends "admin/base_site.html" %} {% load i18n %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block content %}
{% if import_export %}
{% trans "Export" %}
{% csrf_token %} {% trans 'Import' %}
{% endif %} {% if sections %} {% for section in sections %} {% for item in section.items %} {% endfor %} {% endfor %}
{% trans "App" %} {% trans "Model" %} {% trans "Entity" %} {% trans "Fixture" %}
{{ section.opts.app_config.verbose_name|capfirst }} {{ section.opts.verbose_name|capfirst }} {{ item.label }} {{ item.fixture.name }}
{% else %}

{% trans 'None available' %}

{% endif %}
{% endblock %}