{% extends "dashboard/layout.html" %} {% block title %}{{ _('Billing & Invoices – Dashboard') }}{% endblock %} {% block dashboard_content %}
{{ _('View your subscription details and payment history') }}
| {{ _('Date') }} | {{ _('Description') }} | {{ _('Amount') }} | {{ _('Status') }} | {{ _('Invoice') }} |
|---|---|---|---|---|
| {{ inv.created_at[:10] if inv.created_at else '–' }} | {{ inv.description or _('Subscription payment') }} | ${{ '%.2f'|format(inv_amount) }} {{ (inv.currency or 'USD')|upper }} | {{ (inv.status or 'unknown')|capitalize }} |
{{ _('No invoices yet') }}
{{ _('Your payment history will appear here after your first subscription payment.') }}
{% if plan and plan.price_monthly == 0 %} {{ _('Upgrade to a paid plan') }} {% endif %}