{% extends "base.html" %} {% load i18n %} {% block title %}{% trans "Verify payment" %}{% endblock %} {% block content %}

{% trans "Payment verification" %}

{% if request.user.email %} {% blocktrans with email=request.user.email %} We have sent a verification code to {{ email }}. Enter the code below to confirm the payment. {% endblocktrans %} {% else %} {% trans "Enter the verification code that was sent to your email." %} {% endif %}

  • {% trans "From account" %}: {{ verification.payer_account.name }} ({{ verification.payer_account.iban }})
  • {% trans "To account" %}: {{ verification.beneficiary_account.name }} ({{ verification.beneficiary_account.iban }})
  • {% trans "Amount" %}: {{ verification.amount }} EUR
  • {% if verification.information %}
  • {% trans "Information" %}: {{ verification.information }}
  • {% endif %}
{% csrf_token %}
{{ form.code.label_tag }} {{ form.code }} {% if form.code.errors %}
{{ form.code.errors|join:", " }}
{% endif %}
{% if form.non_field_errors %}
{{ form.non_field_errors|join:", " }}
{% endif %}
{% trans "Cancel" %}
{% endblock %}