{% extends "base.html" %} {% block title %}Payment Gateway — fastapi-getpaid Example{% endblock %} {% block content %}

Fake Payment Gateway

{{ message | default("Payment authorization") }}

{% if ext_id %} {% endif %} {% if value %} {% endif %} {% if description %} {% endif %}
Payment ID {{ ext_id[:8] if ext_id|length > 8 else ext_id }}...
Amount {{ value }} {{ currency }}
Description {{ description }}

Do you authorize this payment?

{% endblock %}