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

{{ profile.nickname }} 的明信片

+ 新明信片
{% if sent %} {% for pc in sent %}
{% if pc.image_front %} 正面 {% else %}
📷
{% endif %}
{{ pc.card_number }} {{ pc.country|flag }} {{ pc.country or '-' }} → {{ pc.recipient_name or '-' }} {{ {'sent':'已寄出','delivered':'已送达'}.get(pc.status) }}
{% if pc.status == 'sent' %}
{% endif %}
{% endfor %} {% else %}

没有寄出的明信片。

{% endif %}
{% endblock %}