Lengow/templates/orders/order/index.html

13 lines
263 B
HTML

{% extends 'orders/base.html' %}
{% block body %}
<h1>Orders</h1>
<ul>
{% for order in object_list %}
<li>{{ order.idFlux }}</li>
{% empty %}
<li>No articles yet.</li>
{% endfor %}
</ul>
{% endblock %}