{% extends "base.html" %} {% block title %}Order {{ order.id[:8] }}... — fastapi-getpaid Example{% endblock %} {% block content %}
| ID | {{ order.id }} |
|---|---|
| Description | {{ order.description }} |
| Amount | {{ order.amount }} {{ order.currency }} |
| Created | {{ order.created_at }} |
{{ 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 %}
No payments yet.
{% endif %}