Files @ f42aeb707e2a
Branch filter:

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

Christopher Neugebauer
Factors the display of an invoice into _invoice_details.html for reuse in e-mail bits.
{% 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 %}