{% extends 'base.html' %} {% block title %}运营面板 - 套餐管理{% endblock %} {% block content %}

套餐管理

新建套餐 返回概览 在 Django Admin 编辑
{% for p in plans %} {% empty %} {% endfor %}
名称 月费 包含流量(GB) 超量单价 状态 公开 允许新购 允许续费 功能摘要 操作
{{ p.name }} {{ p.base_price_per_domain }} {{ p.included_traffic_gb_per_domain }} {{ p.overage_price_per_gb }} {% if p.is_active %}Active{% else %}Disabled{% endif %} {% if p.is_public %}是{% else %}否{% endif %} {% if p.allow_new_purchase %}是{% else %}否{% endif %} {% if p.allow_renew %}是{% else %}否{% endif %} {% if p.features %} WAF {% if p.features.waf_enabled %}✔{% else %}✖{% endif %} HTTP/3 {% if p.features.http3_enabled %}✔{% else %}✖{% endif %} WebSocket {% if p.features.websocket_enabled %}✔{% else %}✖{% endif %} 日志 {% if p.features.realtime_logs_enabled or p.features.logs_enabled %}✔{% else %}✖{% endif %} {% else %} - {% endif %} 编辑
{% csrf_token %}
{% csrf_token %}
{% csrf_token %}
{% csrf_token %}
暂无套餐
{% endblock %}