You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
980 B
HTML
35 lines
980 B
HTML
{% extends 'account_layout.html' %}
|
|
{% load i18n %}
|
|
{% load static %}
|
|
|
|
{% block headers %}
|
|
{% if payment.status == 'new' %}
|
|
<meta http-equiv="refresh" content="30" />
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block pagetitle %}
|
|
{% trans 'Payment' %} #{{payment.id}}:
|
|
{{ payment.get_status_display }}
|
|
{% endblock %}
|
|
{% block account_content %}
|
|
<section id="account">
|
|
{% if payment.status_message %}
|
|
<p><b>{{payment.status_message}}</b></p>
|
|
{% endif %}
|
|
|
|
<p>
|
|
{% if payment.status == 'confirmed' %}
|
|
{% trans 'The payment has been confirmed.' %}
|
|
{% elif payment.status == 'cancelled' %}
|
|
{% trans 'The payment has been cancelled.' %}
|
|
{% elif payment.status == 'new' %}
|
|
{% trans 'This page will be updated with payment progress.' %}
|
|
{% endif %}
|
|
<br />
|
|
<a href="{% url 'account:index' %}">{% trans 'Go back to your account' %}</a>
|
|
</p>
|
|
</section>
|
|
{% endblock %}
|
|
|