{% extends "base.html" %} {% block title %}{{ profile.nickname }} - {{ 'brand'|t(user.language) }}{% endblock %} {% block content %}

{{ profile.nickname }} {{ 'pc_list.title'|t(user.language) }}

{{ 'pc_list.new'|t(user.language) }}
{% if profile.notes %}
{{ profile.notes }}
{% endif %}
{% if sent %} {% for pc in sent %}
{% if pc.image_front %} {% else %}
📷
{% endif %}
{{ pc.card_number }}
{% if pc.country_from %}{{ pc.country_from|flag }}→{% endif %}{{ pc.country_to|flag }} {{ pc.country_to or '-' }} → {{ pc.recipient_name or '-' }}
{{ {'sent':'已寄出','delivered':'已送达'}.get(pc.status) if user.language=='zh' else {'sent':'Sent','delivered':'Delivered'}.get(pc.status) }} {% if pc.send_time %}{{ pc.send_time.strftime('%Y-%m-%d') }}{% if user.language=='zh' %}寄出{% endif %}{% endif %} {% if pc.arrival_time %}
{{ pc.arrival_time.strftime('%Y-%m-%d') }}{% if user.language=='zh' %}送达{% endif %}{% endif %}
{% if pc.notes %}{{ pc.notes[:50] }}{% if pc.notes|length > 50 %}…{% endif %}{% endif %}
{% if pc.status == 'sent' %}
{% endif %}
{% endfor %} {% else %}

{{ 'pc_list.empty_sent'|t(user.language) }}

{% endif %}
{% endblock %}