{% extends "excerptexport/layouts/base.html" %} {% load i18n %} {% block breadcrumb %} {{ block.super }}
  • {% trans 'My orders' %}
  • {% trans 'Order' %} {{ extraction_order.id }}
  • {% endblock %} {% block main %}

    {% blocktrans with excerpt_name=extraction_order.excerpt_name %}Export status (excerpt "{{ excerpt_name }}") {% endblocktrans %} ↻ {% trans 'Reload' %}

    {% trans 'ID' %}{{ extraction_order.id }}
    {% trans 'Excerpt' %}{{ extraction_order.excerpt_name }}
    {% trans 'Status' %} {% include 'excerptexport/partials/status.html' with status=extraction_order.get_state_display %} {% with extraction_order.get_state_display|lower as state %} {{ state }} {% endwith %}
    {% trans 'Issuer' %}{{ extraction_order.orderer.get_username }}
    {% if extraction_order.output_files.count > 0 %}

    {% trans 'Downloads' %} {% if extraction_order.are_downloads_ready %}(Σ:{{ extraction_order.output_files.count }}){% else %}({{ extraction_order.output_files.count }} {% trans 'already converted …' %}){% endif %}

    {% include 'excerptexport/partials/download_list.html' %} {% include 'excerptexport/partials/send_all_links.html' %} {% endif %}
    {% endblock %}