copyleftconf-website/pinaxcon/templates/registrasion/items_list.html
2016-04-12 20:15:50 +10:00

7 lines
149 B
HTML

{% if items %}
<ul>
{% for item in items %}
<li>{{ item.quantity }} &times; {{ item.product }}</li>
{% endfor %}
</ul>
{% endif %}