{% extends "admin/layout.html" %} {% block title %}Payments & Revenue โ Admin{% endblock %} {% block body %}
All Stripe and manual payments in one view.
| User | Plan / Description | Amount | Source | Status | Date |
|---|---|---|---|---|---|
|
{% if p.username %}
{{ p.username }}
{{ p.email or '' }}
{% else %}
Deleted user
{% endif %}
|
{{ p.plan_name or p.description or 'โ' }}
{% if p.notes %}
{{ p.notes }}
{% endif %}
|
${{ '%.2f'|format(p.display_amount) }} {{ (p.currency or 'USD')|upper }} | {% if p.source == 'stripe' %} Stripe {% else %} Manual {% endif %} | {{ (p.status or 'paid')|capitalize }} | {{ (p.created_at or '')[:10] }} |
No payment records found.
Try adjusting your filters.