{% extends "recurring_payments/base.html" %} {% load base_tags %} {% load base_filters %} {% load perm_tags %} {% load recurring_payments_tags %} {% load i18n %} {% block title %}My Recurring Payment Accounts{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block body %}
{% rp_nav request.user %}

{% if is_owner %}My {% else %}{{ account_user.get_full_name }}({{ account_user.username }})'s {% endif %}Recurring Payment Accounts

{% for rp in rps %}
Payment Amount: {{ rp.payment_amount|format_currency }}
Initial Billing Cycle Start Date: {{ rp.billing_start_dt }}
Billing Frequency: Once every {{ rp.billing_frequency }} {{ rp.billing_period }}{{ rp.billing_frequency|pluralize }}
Billing Date: {{ rp.num_days }} day{{ rp.num_days|pluralize }} after each billing cycle {{ rp.due_sore }} date
Status: {{ rp.status_detail }}
{% endfor %}
{% endblock %} {% block extra_body %} {{ block.super }} {% endblock %}