comet/comet/account/templates/account/list_accounts.html
2018-12-14 18:25:26 +01:00

31 lines
677 B
HTML

{% extends 'account/base.html' %}
{% block content %}
<h1>Rechercher un compte</h1>
<form action="" method="post">
{% csrf_token %}
{{ form }}
<br/>
<input type="submit" value="Chercher">
</form>
<table>
<tr>
<th>Prénom</th>
<th>Nom</th>
<th>Solde (€)</th>
<th></th>
</tr>
{% for account in accounts %}
<tr>
<td>{{ account.lastname }}</td>
<td>{{ account.firstname }}</td>
<td>{{ account.balance }}</td>
<td>
<a class="button" href="{% url 'pay' account.pk %}"><i class="icon fa-print"></i></a>
<a class="button" href="{% url 'account' account.pk %}"><i class="icon fa-dollar-sign"></i></a>
</td>
</tr>
{% endfor %}
</table>
{% endblock %}