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

    {% trans 'Orders' %}

    {% for extraction_order in extraction_orders.all %}

    {% include 'excerptexport/partials/status.html' with status=extraction_order.get_state_display %} #{{ extraction_order.id }} {% blocktrans with excerpt_name=extraction_order.excerpt_name %}Extraction of "{{ excerpt_name }}"{% endblocktrans %}

    {% if extraction_order.output_files.count > 0 %} {% blocktrans with number_of_output_files=extraction_order.output_files.count %}{{ number_of_output_files }} Downloads{% endblocktrans %} {% endif %}

    {% endfor %}
    {% endblock %}