Files @ fc88c31d82a2
Branch filter:

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

bsturmfels
Switch default country to US, currency to USD, tax to zero

Also default linux_australia to field to false to avoid IntegrityError.
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 %}