{% extends "base.html" %} {% block title %}Dashboard{% endblock %} {% block content %}

Payments Dashboard

{% if failed_plugins %}

Plugin warnings

The simulator started in degraded mode. Some provider plugins failed to initialize.

{% endif %}
Filter by provider: All {% for provider_filter in provider_filters %} {{ provider_filter.display_name }} {% endfor %}
{% if orders %} {% for order in orders %} {% set amount = order.formatted_amount %} {% set status = order.status %} {% set order_id = order.id %} {% set provider = order.provider_display_name %} {% set authorize_url = order.authorize_url %} {% include "components/dashboard_payment_card.html" %} {% endfor %} {% else %}

No payments yet

Create a payment via your application to see it here.

{% endif %}
{% endblock %}