{% extends "payments/base.html" %} {% load payments_tags %} {% load base_filters %} {% load styled_forms %} {% block extra_head %} {{ block.super }} {% endblock %} {% block content %}
{% trans 'Invoice #' %}: {{ payment.invoice.id }}
{% trans 'Description' %}: {{ payment.description }}
{% trans 'Total' %}: {{ payment.amount|format_currency }}
{% if billing_info_form.errors.values %}
{% endif %}

{% trans 'Please fill out the fields below' %}

{% csrf_token %}

{% trans 'Payment Information' %}


{{ form.card_name.errors }}

Billing Information

{% for field in billing_info_form %}
{{ field }} {{ field.errors }}
{% endfor %}

 

{% endblock %} {% block extra_body %} {{ block.super }} {% set_stripe_key %} {% endblock %}