后台管理

{% if request.args.get('msg') %}

{{ request.args.get('msg') }}

{% endif %}

社区管理

可在后台直接完成用户、帖子、评论、分类与举报处理。

厂商

先添加厂商,再在厂商下添加多条配置。

添加配置

{% if providers %} {% include "admin/_plan_form_inline.html" with context %} {% else %}

请先 添加厂商

{% endif %}

全部配置

{% for plan in plans %} {% else %} {% endfor %}
厂商 国家/区域 配置 vCPU 内存 流量 月付 涨跌趋势 官网链接 操作
{% if plan.provider_id %}{{ plan.provider_name }}{% else %}{{ plan.provider_name }}{% endif %} {{ plan.countries or plan.region or '—' }} {{ plan.display_name }} {{ plan.vcpu if plan.vcpu is not none else '—' }} {{ plan.memory_gb ~ ' GB' if plan.memory_gb is not none else '—' }} {{ plan.traffic or '—' }} {% if plan.price_cny is not none %}¥{{ plan.price_cny }}{% elif plan.price_usd is not none %}${{ plan.price_usd }}{% else %}—{% endif %} {% set trend = plan_trends.get(plan.id) %} {% if trend %}
{{ trend.delta_text }} {{ trend.meta_text }}
{% else %} — {% endif %}
{% if plan.official_url %}链接{% else %}—{% endif %}
暂无配置。