checkout/src/purchase/templates/purchase/snippets/report_no_payment_method.html

22 lines
596 B
HTML
Raw Normal View History

2022-04-25 23:04:49 +02:00
{% load i18n %}
2022-04-25 18:59:32 +02:00
{% load purchase %}
<table class="table table-hover table-sm">
<thead><tr>
2022-04-26 23:31:49 +02:00
<th scope="col">{% translate "Basket" %}</th>
2022-04-25 23:04:49 +02:00
<th scope="col">{% translate "Price" %}</th>
2022-04-25 18:59:32 +02:00
</tr></thead>
<tbody>
{% for basket in no_payment_method %}
<tr>
<th scope="row">
<a href="{% url "purchase:update" basket.id %}">
{{ basket }}
</a>
</th>
<td>{{ basket.price|currency }}</td>
</tr>
{% endfor %}
</tbody>
</table>