{% extends 'leprikon/list.html' %} {% load cms_tags i18n leprikon_tags %} {% block list %} {% if request.GET.PaymentOrderStatusID.0 == '3' %}
{% trans 'Thank You, the online payment was successful. The confirmation will be available within several minutes.' %}
{% elif request.GET.PaymentOrderStatusID.0 == '2' %}
{% trans 'Unfortunately, the online payment was not successful. Please, try it again or choose another payment method.' %}
{% endif %} {% for payment in object_list %} {% empty %} {% endfor %}
{% trans 'Date' %} {% trans 'Subject' %} {% trans 'Payment Type' %} {% trans 'Amount' %}
{{ payment.accounted.date }} {{ payment.registration }} {{ payment.payment_type_label }} {{ payment.amount | currency }} {% trans 'download' %}
{{ message_empty }}
{% endblock %}