|
|
@ -59,7 +59,17 @@ with this program; if not, write to the Free Software Foundation, Inc., |
|
|
{% for facture in facture_list %} |
|
|
{% for facture in facture_list %} |
|
|
<tr> |
|
|
<tr> |
|
|
<td><a href="{% url 'users:profil' userid=facture.user.id %}">{{ facture.user }}</a></td> |
|
|
<td><a href="{% url 'users:profil' userid=facture.user.id %}">{{ facture.user }}</a></td> |
|
|
<td>{{ facture.name }}</td> |
|
|
<td> |
|
|
|
|
|
<table class="table-striped"> |
|
|
|
|
|
{% for article in facture.name_detailed %} |
|
|
|
|
|
<tr> |
|
|
|
|
|
<td> |
|
|
|
|
|
{{ article }} |
|
|
|
|
|
</td> |
|
|
|
|
|
</tr> |
|
|
|
|
|
{% endfor %} |
|
|
|
|
|
</table> |
|
|
|
|
|
</td> |
|
|
<td>{{ facture.prix_total }}</td> |
|
|
<td>{{ facture.prix_total }}</td> |
|
|
<td>{{ facture.paiement }}</td> |
|
|
<td>{{ facture.paiement }}</td> |
|
|
<td>{{ facture.date }}</td> |
|
|
<td>{{ facture.date }}</td> |
|
|
|