{% extends "base.html" %} {% block title %}用户设置 - 明信片管理器{% endblock %} {% block content %}

用户设置

{% if success %}
{{ success }}
{% endif %} {% if error %}
{{ error }}
{% endif %}

修改用户名

修改密码

全局展示设置

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

各 Profile 展示设置

{% if profiles %} {% for p in profiles %} {% set sent_cards = [] %} {% set received_cards = [] %} {% if profile_cards and p.id in profile_cards %} {% for pc in profile_cards[p.id] %} {% if pc.status in ('sent', 'delivered') %} {% if sent_cards.append(pc) %}{% endif %} {% else %} {% if received_cards.append(pc) %}{% endif %} {% endif %} {% endfor %} {% endif %}
{{ p.nickname }} {% if p.showcase_enabled %}展示中{% else %}未开启{% endif %}
{% if p.showcase_enabled and (sent_cards or received_cards) %}

单张明信片展示控制:

{% if sent_cards %}
发出 {% for pc in sent_cards %}
{{ pc.card_number }}
{% endfor %}
{% endif %} {% if received_cards %}
收到 {% for pc in received_cards %}
{{ pc.card_number }}
{% endfor %}
{% endif %}
{% elif p.showcase_enabled %}

暂无明信片

{% endif %}
{% endfor %} {% else %}

暂无 Profile,请先创建

{% endif %}
{% endblock %}