{% extends "pretixcontrol/event/base.html" %} {% load i18n %} {% load bootstrap3 %} {% load eventurl %} {% block title %}{% trans "Swap Request Statistics" %}{% endblock %} {% block content %}

{% trans "Swap Request Statistics" %}

{% trans "Requests by product" %}

{% trans "This table shows the open requests with no match (paid or unpaid)." %}{#TODO words #}
{% csrf_token %}
{% for product in by_products %} {% empty %} {% endfor %}
{% trans "Swap requests" %} {% trans "Available in qutoa" %} {% trans "Orders waiting for approval" %} {% trans "Orders waiting for payment" %} {% trans "Cancelation requests" %} {% trans "Approve orders" %}
{{ product.item }} {{ product.open_swap_requests }} {{ product.available_in_quota }} {{ product.approval_orders }} {{ product.pending_orders }} {{ product.open_cancelation_requests }} {% if product.form_field %}{% bootstrap_field product.form_field layout="inline" %}{% endif %}
{% trans "There are currently no open requests." %}


{% trans "Requests by state" %}

{% trans "Swaps" %} {% trans "Cancelations" %}
{% trans "Requested" %} {{ by_state.swap.open }} {{ by_state.cancel.open }}
{% trans "Completed" %} {{ by_state.swap.done }} {{ by_state.cancel.done }}
{% trans "Total" %} {{ by_state.swap.total }} {{ by_state.cancel.total }}
{% endblock %}