{% extends "recurring_payments/base.html" %} {% load base_filters %} {% load perm_tags %} {% load recurring_payments_tags %} {% block extra_head %} {{ block.super }} {% endblock %} {% block content %}

{% trans 'Disabling Recurring Payment' %}

Description: {{ rp.description }}
{% 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 }} {% trans 'date' %}
{% trans 'The number of billing cycle completed' %}: {{ rp.num_billing_cycle_completed }}
{% trans 'The number of billing cycle failed' %}: {{ rp.num_billing_cycle_failed }}
{% url "recurring_payment.view_account" rp.id as acc_url %}

{% blocktrans %}Are you sure you want to disable this account?{% endblocktrans %}

{% csrf_token %}
{% endblock %}