Files @ d4b0b52253ae
Branch filter:

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

Joel Addison
Registrasion updates

Show applied vouchers on attendee registration admin page.
Add head title and page title to more areas.
Update the dashboard to show warning for empty categories and have
button to open voucher page.
Fix exception on attendee page when user does not have attendee object.
1
2
3
4
5
6
7
8
9
{% if items %}
  <ul>
    {% for item in items %}
      <li>{{ item.quantity }} &times; {{ item.product }} {{ suffix }}</li>
    {% endfor %}
  </ul>
{% else %}
  <p>No items.</p>
{% endif %}