{% extends "admin/layout.html" %} {% block title %}Manual Payments – Admin{% endblock %} {% block body %}
{% trans %}All manually recorded payments. Total:{% endtrans %} {{ total }}
| # | {% trans %}User{% endtrans %} | {% trans %}Plan{% endtrans %} | {% trans %}Amount{% endtrans %} | {% trans %}Method{% endtrans %} | {% trans %}Notes{% endtrans %} | {% trans %}Expires{% endtrans %} | {% trans %}Date{% endtrans %} |
|---|---|---|---|---|---|---|---|
| {{ p.id }} |
{{ p.username }}
{{ p.email }}
|
{{ p.plan_name }} | {{ p.currency }} {{ '%.2f'|format(p.amount) }} | {{ p.method|replace('_', ' ') }} | {{ p.notes or '–' }} | {{ p.subscription_expires_at[:10] if p.subscription_expires_at else '–' }} | {{ p.created_at[:10] if p.created_at else '' }} |