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

Create New Order

Existing Orders

{% if orders %}
{% for order in orders %} {% endfor %}
Description Amount ID
{{ order.description }} {{ order.amount }} {{ order.currency }} {{ order.id[:8] }}... View
{% else %}

No orders yet. Create one using the form.

{% endif %}
{% endblock %}