{% extends "saas/base_dashboard.html" %} {% block saas_content %}

Balance

{% if balance_price.amount >= 0 %}
{{balance_price|humanize_money}}
Balance due {% if balance_price.amount > 0 %}(pay now){% endif %}
{% else %}
{{balance_price|humanize_money}}
Balance Credits
{% endif %}

Credit Card

Update
card
{% if last4 %}{{last4}}{% else %}N/A{% endif %}
expires
{% if exp_date %}{{exp_date}}{% else %}N/A{% endif %}
{% include "saas/_transactions.html" %}
{% endblock %}