{% extends 'base.html' %} {% block title %}运营面板 - 账单列表{% endblock %} {% block content %}
| ID | 用户 | 周期 | 套餐费 | 超量费 | 调整 | 总金额 | 状态 | 支付时间 | 操作 |
|---|---|---|---|---|---|---|---|---|---|
| {{ inv.id }} | {{ inv.user.username }} | {{ inv.period_start }} → {{ inv.period_end }} | ¥{{ inv.amount_plan_total }} | ¥{{ inv.amount_overage_total }} | ¥{{ inv.amount_adjustment }} | ¥{{ inv.amount_total }} | {% if inv.status == 'unpaid' %}未支付 {% elif inv.status == 'paid' %}已支付 {% elif inv.status == 'cancelled' %}已取消 {% else %}未知{% endif %} | {% if inv.paid_at %}{{ inv.paid_at|date:'Y-m-d H:i' }}{% else %}-{% endif %} | 详情/调账 |
| 暂无账单 | |||||||||