{% extends "pretixcontrol/event/base.html" %} {% load i18n %} {% load bootstrap3 %} {% load money %} {% block title %}{% trans "Transaction history" %}{% endblock %} {% block content %}

{% trans "Transaction history" %} {% blocktrans trimmed with order=order.code %} Back to order {{ order }} {% endblocktrans %}

{% for t in transactions %} {% endfor %}
{% trans "Date" %} {% trans "Product" %} {% trans "Tax rate" %} {% trans "Quantity" %} {% trans "Single price" %} {% trans "Total tax value" %} {% trans "Total price" %}
{{ t.datetime|date:"SHORT_DATETIME_FORMAT" }} {% if t.migrated %} {% endif %} {% if t.item %} {{ t.item }} {% if t.variation %} – {{ t.variation }} {% endif %} {% endif %} {% if t.fee_type %} {{ t.get_fee_type_display }} {% endif %} {% if t.subevent %}
{{ t.subevent }} {% endif %}
{{ t.tax_rate }} % {{ t.count }} × {{ t.price|money:request.event.currency }} {{ t.full_tax_value|money:request.event.currency }} {{ t.full_price|money:request.event.currency }}
{% trans "Sum" %} {{ sums.count }} {{ sums.full_tax_value|money:request.event.currency }} {{ sums.full_price|money:request.event.currency }}
{% endblock %}