{% extends "base.html" %} {% block title %}展示管理 - 明信片管理器{% endblock %} {% block content %}

展示管理

全局展示设置

公开展示页地址:/u/{{ user.username }}

各 Profile 展示设置

{% if profiles %} {% for p in profiles %} {% set pc_list = profile_cards.get(p.id, []) %}
{{ p.nickname }} {% if p.showcase_enabled %}展示中{% else %}未开启{% endif %}
{% if p.showcase_enabled and pc_list %}

单张明信片展示控制(关闭展示后可单独隐藏):

{% for pc in pc_list %}
{{ pc.card_number }} {% if pc.showcase_hidden %}隐藏{% endif %}
{% endfor %}
{% endif %}
{% endfor %} {% else %}

暂无 Profile,请先创建

{% endif %}
{% endblock %}