{% block warning_box %}{% endblock %}
{% trans %}Amount{% endtrans %}
{{ transaction.amount }} {{ transaction.currency }}
{% trans %}Payment date{% endtrans %}
{{ transaction.timestamp | format_datetime(timezone=transaction.registration.event.tzinfo) }}
{% if plugin %}
{% trans %}Paid with{% endtrans %}
{{ plugin.title }}
{% endif %} {% if not transaction.is_manual %} {# not useful for manual payments since it just uses the amount the user was supposed to pay #}
{% trans %}Paid amount{% endtrans %}
{{ format_currency(transaction.amount, transaction.currency, locale=session.lang) }}
{% endif %} {% block details %}{% endblock %}