{% extends "base.html" %} {% block title %}总览 - 星笺{% endblock %} {% block content %}

👋 欢迎,{{ user.username }}

{% if profiles %}
📮
{{ total }} 全部明信片
📤
{{ sent }} 已寄出
📬
{{ delivered }} 已送达
💌
{{ received }} 已收到
🌍
{{ countries }} 国家/地区
{% if total > 0 %}
已寄出 {{ sent_pct }}% 已送达 {{ delivered_pct }}% 已收到 {{ received_pct }}%
{% endif %} {% if country_stats %}

🌍 国家/地区分布

{% set max_count = country_stats[0][1] if country_stats else 1 %} {% for code, count in country_stats %}
{{ code|flag }} {{ code }}
{{ count }}
{% endfor %}
{% endif %}

最近动态

{% if recent %} {% else %}

暂无明信片

{% endif %}

Profile

{% for p in profiles %} {{ p.nickname }} {% endfor %} 管理全部
{% else %}
📮

欢迎使用星笺!

创建一个 Profile 开始管理你的明信片

{% endif %} {% endblock %}