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

👋 欢迎,{{ user.username }}

{% if profiles %}
{% for p in profiles %} {% set ex = extras[p.id] %}
📮

{{ p.nickname }}

{{ stats[p.id].total }} 总计
{{ stats[p.id].sent }} 寄出
{{ stats[p.id].delivered }} 送达
{{ stats[p.id].received }} 收到
{% if ex.countries %}
{% for c in ex.countries %} {{ c }} {% endfor %}
{% endif %} {% if ex.recent %}
最近 {% for c in ex.recent %} {{ c.card_number }} {% endfor %}
{% endif %}
{% endfor %}
{% else %}

还没有 Profile,去创建一个

{% endif %}
{% endblock %}