{% extends "saas/transactions_base.html" %} {% load static from staticfiles %} {% load saas_tags %} {% block saas_transaction_content %}

Credit Card

Update
card
{% if last4 %}{{last4}}{% else %}N/A{% endif %}
expires
{% if exp_date %}{{exp_date}}{% else %}N/A{% endif %}

Balance

{% if balance_amount >= 0 %}
{{balance_amount|humanize_money:balance_unit}}
Balance due {% if balance_amount > 0 %}(pay now){% endif %}
{% else %}
{{balance_amount|humanize_money:balance_unit}}
Balance Credits
{% endif %}
{% endblock %} {% block saas_bodyscripts %} {{block.super}} {% endblock %}