Browse Source

Handle paypal entries in billing history page

pull/64/head
Pēteris Caune 9 years ago
parent
commit
39ca0a8924
1 changed files with 6 additions and 0 deletions
  1. +6
    -0
      templates/payments/billing.html

+ 6
- 0
templates/payments/billing.html View File

@ -19,7 +19,13 @@
<tr>
<td>{{ tx.created_at }}</td>
<td>
{% if tx.payment_instrument_type == "paypal_account" %}
Paypal from {{ tx.paypal.payer_email }}
{% endif %}
{% if tx.payment_instrument_type == "credit_card" %}
{{ tx.credit_card.card_type }} ending in {{ tx.credit_card.last_4 }}
{% endif %}
</td>
<td>
{% if tx.currency_iso_code == "USD" %}


Loading…
Cancel
Save