Files @ f42aeb707e2a
Branch filter:

Location: CopyleftConf/copyleftconf-website/pinaxcon/templates/registrasion/items_list.html

Christopher Neugebauer
Factors the display of an invoice into _invoice_details.html for reuse in e-mail bits.
1
2
3
4
5
6
7
{% if items %}
  <ul>
    {% for item in items %}
      <li>{{ item.quantity }} &times; {{ item.product }}</li>
    {% endfor %}
  </ul>
{% endif %}