Files @ 42c97e684802
Branch filter:

Location: symposion_app/pinaxcon/templates/registrasion/items_list.html

Christopher Neugebauer
Merge remote-tracking branch 'pinaxcon/master'
1
2
3
4
5
6
7
{% if items %}
  <ul>
    {% for item in items %}
      <li>{{ item.quantity }} &times; {{ item.product }}</li>
    {% endfor %}
  </ul>
{% endif %}