{% extends "base.html" %} {% block title %}{{ _('Pay Invoice') }} - {{ app_name }}{% endblock %} {% block content %}

{{ _('Pay Invoice') }}

{{ _('Invoice Number') }}: #{{ invoice.invoice_number }}
{{ _('Amount Due') }}: {{ invoice.currency_code }} {{ "%.2f"|format(invoice.total_amount) }}
{{ _('Due Date') }}: {{ invoice.due_date.strftime('%Y-%m-%d') }}
{% if gateway.provider == 'stripe' %}

{{ _('You will be redirected to a secure payment page to complete your payment.') }}

{{ _('Cancel') }}
{% else %}

{{ _('Payment gateway not yet supported. Please contact support.') }}

{% endif %}
{% endblock %}