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

Fake Payment Gateway

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

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

Do you authorize this payment?

{% endblock %}