You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

30 lines
875 B

{% extends 'clientsideapp/ext.html' %}
{% block client_main %}
<div class="page-header">
<h3>Проведённые платежи</h3>
</div>
<table class="table table-striped table-bordered">
<thead>
<tr>
<th>Сумма транзакции (руб)</th>
<th>Дата транзакции</th>
<th>Комментарий</th>
</tr>
</thead>
<tbody>
{% for pay in pay_history %}
<tr>
<td>{{ pay.amount }}</td>
<td>{{ pay.date|date:'d b H:i' }}</td>
<td>{{ pay.comment }}</td>
</tr>
{% empty %}
<tr>
<td colspan="3">У вас нет проведённых платежей</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}