{% extends "admin/base.html" %} {% block title %}User: {{ user.username }}{% endblock %} {% block content %}
User ID: {{ user.id }} | Created: {{ user.created_at.strftime('%Y-%m-%d %H:%M') }}
| Invoice # | Period | Total | Status |
|---|---|---|---|
| {{ invoice.invoice_number }} | {{ invoice.period_start.strftime('%Y-%m-%d') }} - {{ invoice.period_end.strftime('%Y-%m-%d') }} | {{ invoice.total | format_currency }} | {% if invoice.status == 'paid' %} Paid {% elif invoice.status == 'open' %} Open {% else %} {{ invoice.status }} {% endif %} |
Deleting a user is permanent and cannot be undone. All files and data associated with this user will be lost.