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

{% trans 'Payment Receipt' %}

{% trans 'Name' %}
{{ rp.user.get_full_name }}({{ rp.user.email }})
{% trans 'Date' %}
{{ payment_transaction.create_dt|date }}
{% trans 'Card #' %}
****{{ payment_profile.card_num }}
{% trans 'Description' %}
{{ rp.description }}
{% trans 'Billing Cycle' %}
{{ payment_transaction.recurring_payment_invoice.billing_cycle_start_dt|date:"n/j/Y" }} - {{ payment_transaction.recurring_payment_invoice.billing_cycle_end_dt|date:"n/j/Y" }}
 
{% trans 'Subtotal' %}: {{ invoice.subtotal|format_currency }}
{% trans 'Tax' %}: {{ invoice.tax|format_currency }}
{% trans 'Total' %}: {{ invoice.total|format_currency }}
{% trans 'Billing Info' %}
{% trans 'Name' %}
{{ payment_transaction.payment.first_name }} {{ payment_transaction.payment.last_name }}
{% trans 'Address' %}
{{ payment_transaction.payment.address }}
{% trans 'City' %}
{{ payment_transaction.payment.city }}
{% trans 'Zip code' %}
{{ payment_transaction.payment.zip }}
{% trans 'Phone' %}
{{ payment_transaction.payment.phone }}
{% trans 'Email' %}
{{ payment_transaction.payment.email }}
 
{% trans 'View Account' %}
{% endblock %}