{% extends 'base.html' %} {% block title %}账单列表{% endblock %} {% block content %}

账单列表

总金额:¥ {{ total_amount }}
{% for inv in invoices %} {% empty %} {% endfor %}
周期 套餐费用 超量费用 调整 总金额 状态 操作
{{ 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 %} {{ inv.get_status_display }} {% endif %} 详情 {% if inv.status == 'unpaid' %} 支付 {% endif %}
暂无账单
{% endblock %}