{% extends "recurring_payments/base-wide.html" %} {% load base_tags %} {% load base_filters %} {% load perm_tags %} {% load recurring_payments_tags %} {% load i18n %} {% block title %}Recurring Payment Customers{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block body %}
Total # of accounts | Total amount received | Total amount unpaid | Total amount past due |
---|---|---|---|
{{ total_customers }} | {{ total_amount_received|format_currency }} | {{ total_amount_unpaid|format_currency }} | {{ total_amount_past_due|format_currency }} |
Name | Description | Amount({{ SITE_GLOBAL_CURRENCYSYMBOL }}) | Start Date | Total Paid({{ SITE_GLOBAL_CURRENCYSYMBOL }}) | Balance({{ SITE_GLOBAL_CURRENCYSYMBOL }}) | Status Detail | |
---|---|---|---|---|---|---|---|
{% if not rp.user.get_full_name %}{{ rp.user.username }}{% else %}{{ rp.user.get_full_name }}{% endif %} | {{ rp.description }} | {{ rp.payment_amount }} | {{ rp.billing_start_dt|date:"n/j/Y" }} | {{ rp.total_paid }} | {{ rp.get_outstanding_balance }} | {{ rp.status_detail }} | {% if rp.status_detail == 'active' %}run now{% endif %} |