{% extends 'base.html' %} {% block title %}套餐列表{% endblock %} {% block content %}

公开套餐

{% for p in plans %} {% empty %} {% endfor %}
名称 月费(/域名) 包含流量(GB) 超量单价(元/GB) 功能
{{ p.name }} {{ p.base_price_per_domain }} {{ p.included_traffic_gb_per_domain }} {{ p.overage_price_per_gb }} {% if p.features %} WAF: {% if p.features.waf_enabled %}✔{% else %}✖{% endif %} HTTP/3: {% if p.features.http3_enabled %}✔{% else %}✖{% endif %} 日志: {% if p.features.logs_enabled %}✔{% else %}✖{% endif %} {% else %} - {% endif %}
暂无公开套餐,请在后台新增
{% endblock %}