Files @ 4ecd4d0aa4c7
Branch filter:

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

Christopher Neugebauer
Adds a clearer “check out and pay” wording to buttons on the dashboard.

Fixes #8.
{% 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 %}