{% extends "recurring_payments/base.html" %} {% load i18n %} {% load base_filters %} {% load perm_tags %} {% load recurring_payments_tags %} {% block extra_head %} {{ block.super }} {% endblock %} {% block body %}
{% if request.user.is_superuser %} {% rp_nav request.user rp %} {% endif %}

Disabling Recurring Payment

Description: {{ rp.description }}
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
The number of billing cycle completed: {{ rp.num_billing_cycle_completed }}
The number of billing cycle failed: {{ rp.num_billing_cycle_failed }}

Are you sure you want to disable this account?

{% csrf_token %}
{% endblock %}