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.
34 lines
1.1 KiB
34 lines
1.1 KiB
{% extends request.is_ajax|yesno:'nullcont.htm,abonapp/ext.htm' %}
|
|
{% load i18n %}
|
|
{% block content %}
|
|
|
|
<table class="table table-striped table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th>{% trans 'Sub' %}</th>
|
|
<th>{% trans 'Sum' %}</th>
|
|
<th>{% trans 'Date of payment' %}</th>
|
|
<th>{% trans 'Author of payment' %}</th>
|
|
<th>{% trans 'Comment' %}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for ph in pay_history %}
|
|
<tr>
|
|
<td><a href="{% url 'abonapp:abon_home' abon_group.id abon.id %}">{{ ph.abon.username }}</a></td>
|
|
<td>{{ ph.amount }}</td>
|
|
<td>{{ ph.date|date:'d F Y, H:i:s' }}</td>
|
|
<td><a target="_blank" href="{% url 'acc_app:other_profile' ph.author.id %}">{{ ph.author.username }}</a></td>
|
|
<td>{{ ph.comment }}</td>
|
|
</tr>
|
|
{% empty %}
|
|
<tr>
|
|
<td colspan="5">{% trans 'Payment history is empty' %}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
{% include 'toolbar_page.html' with pag=pay_history %}
|
|
{% endblock %}
|