{% extends 'excerptexport/base.html' %}{% load i18n capture_as email_bodies static %} {% block breadcrumb %} {{ block.super }}
  • {% trans 'My Exports' %}
  • {% trans 'Exports' %}{% if exports %}{% with excerpt=exports.0.extraction_order.excerpt %} {{ excerpt.name }}{% endwith %}{% endif %}
  • {% endblock %} {% block main %}
    {% if exports %} {% with excerpt=exports.0.extraction_order.excerpt %}

    {{ excerpt.name }}

    {% for export in exports %} {% include 'excerptexport/partials/export_display.html' %} {% endfor %}
    {% with min_height=70 %} {% include 'excerptexport/partials/minimap.html' %} {% endwith %}
    {% endwith %} {% else %} {% comment %} This will also be shown when the user has no access to this export data, i.e. trying to access somebody else's data. Be friendly :-) {% endcomment %} {% include 'excerptexport/partials/no_exports_message.html' %} {% endif %}

    {% include 'excerptexport/partials/refresh_export_message.html' %}

    {% include 'excerptexport/partials/export_sidebar.html' %}
    {% endblock %} {% block scripts %} {{ block.super }} {% endblock %}