Files @ 7d18387670ca
Branch filter:

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

James Polley
If no boardingpass, make one

- Use the first template in the system
- If there's no template, use /tickets/review as it at least gives
- people an overview of what they've paid for and warns them of
missing categories
{% if payments %}
<table class="table table-striped">
  <tr>
    <th>Payment time</th>
    <th>Reference</th>
    <th>Amount</th>
  </tr>
  {% for payment in payments %}
    <tr>
      <td>{{payment.time}}</td>
      <td>{{payment.reference}}</td>
      <td>{{payment.amount}}</td>
    </tr>
  {% endfor %}
</table>
{% endif %}