{% extends "base.html" %} {% block title %}Order {{ order.id[:8] }}... — fastapi-getpaid Example{% endblock %} {% block content %}

Order Details

ID {{ order.id }}
Description {{ order.description }}
Amount {{ order.amount }} {{ order.currency }}
Created {{ order.created_at }}

Pay for this order

Dummy backend uses the built-in paywall simulator. PayU and Paynow use sandbox environments (no real transactions).

Payments

{% if payments %}
{% for payment in payments %}
{{ payment.id[:8] }}... {% if payment.status == "paid" %} {{ payment.status }} {% elif payment.status == "failed" %} {{ payment.status }} {% elif payment.status == "prepared" %} {{ payment.status }} {% else %} {{ payment.status }} {% endif %}
{{ payment.amount_required }} {{ payment.currency }}
Backend: {{ payment.backend }}
{% endfor %}
{% else %}

No payments yet.

{% endif %}
Back to Orders
{% endblock %}