{% extends "recurring_payments/base.html" %} {% load base_tags %} {% load base_filters %} {% load perm_tags %} {% load recurring_payments_tags %} {% block title %}{% trans 'My Recurring Payment Accounts' %}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block content %}

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

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