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.

28 lines
723 B
HTML

{% extends 'account_layout.html' %}
{% load i18n %}
{% load static %}
{% block pagetitle %}{% trans 'Payments' %}{% endblock %}
{% block account_content %}
<table class="admin-list">
<thead>
<tr>
<td>{% trans 'Date' %}</td>
<td>{% trans 'Value' %}</td>
<td>{% trans 'Status' %}</td>
</tr>
</thead>
<tbody>
{% for payment in payments %}
<tr>
<td>{{ payment.created }}</td>
<td>{{ payment.time }}
({{ payment.get_amount_display }})
</td>
<td>{{ payment.get_status_display }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}