{% extends "recurring_payments/base-wide.html" %} {% load base_tags %} {% load base_filters %} {% load perm_tags %} {% load recurring_payments_tags %} {% block title %}{% trans 'Recurring Payment View' %}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block content %}
{% trans "Membership type" %} | {% trans "Member Number" %} | {% trans "Expire date" %} | {% trans "Status detail" %} |
---|---|---|---|
{{ m.membership_type.name }} | {{ m.member_number }} | {{ m.expire_dt }} | {{ m.status_detail }} |
{% trans 'Billing Cycle' %} | {% trans 'Amount' %} | {% trans 'Due Date' %} | {% trans 'Payment Received Date' %} | {% trans 'Paid?' %} | {% trans 'Invoice' %} # |
---|---|---|---|---|---|
{{ rp_invoice.billing_cycle_start_dt|date:"n/j/Y" }} - {{ rp_invoice.billing_cycle_end_dt|date:"n/j/Y" }} | {{ rp_invoice.invoice.total|format_currency }} | {{ rp_invoice.billing_dt|date:"n/j/Y" }} | {% if rp_invoice.payment_received_dt %}{{ rp_invoice.payment_received_dt|date:"n/j/Y" }}{% endif %} | {% if rp_invoice.invoice.balance <= 0 %}Y{% else %}N{% endif %} | {{ rp_invoice.invoice.id }} |
{% trans 'Date' %} | {% trans 'Invoice #' %} | {% trans 'Amount' %} | {% trans 'Result' %} | {% trans 'Reason if Failed' %} | {% trans 'View Receipt' %} |
---|---|---|---|---|---|
{{ pt.create_dt|date:"n/j/Y" }} | {{ pt.recurring_payment_invoice.invoice.id }} | {{ pt.amount|format_currency }} | {% if pt.status %}{% trans 'Success' %}{% else %}{% trans 'Failed' %}{% endif %} | {% if not pt.status %}{{ pt.message_text }}{% endif %} | {% if pt.status %}{{ pt.payment.id }}{% endif %} |
{% if is_active %} {% if rp.platform == 'authorizenet' %} {% endif %} {% endif %} {% endblock %} {% block extra_body %} {{ block.super }} {# dynamically load jquery #} {% if is_active %} {% if rp.platform == 'authorizenet' %} {% endif %} {% endif %} {% endblock %}