{% extends "base.html" %} {% block title %}Dashboard - Postcard Manager{% endblock %} {% block content %}

👋 欢迎,{{ user.username }}

{% if profiles %}
{% for p in profiles %}
📮

{{ p.nickname }}

{{ stats[p.id].total }} 总计
{{ stats[p.id].sent }} 寄出
{{ stats[p.id].delivered }} 送达
{{ stats[p.id].received }} 收到
{% endfor %}
{% else %}

还没有 Profile,去创建一个

{% endif %}
{% endblock %}