{% extends "base.html" %} {% block title %}{{ profile_user.username }} 的展示页{% endblock %} {% block navbar %}{% endblock %} {% block content %}

📮 {{ profile_user.username }} 的明信片

{% set has_content = (sent_all|length + received_all|length) > 0 %} {% if not has_content %}

暂无展示内容

{% else %}
{% if mode == 'flat' %}
{% for pc in sent_all %}
{% if pc.image_front %} {% else %}
📷
{% endif %}
{{ pc.card_number }}
{{ pc.country|flag }} {{ pc.country or '' }} {% if pc.send_time %}{{ pc.send_time.strftime('%Y-%m-%d') }}{% endif %}
{% endfor %}
{% else %} {% for g in profile_groups %} {% if g.sent %}

{{ g.profile.nickname }}

{% for pc in g.sent %}
{% if pc.image_front %} {% else %}
📷
{% endif %}
{{ pc.card_number }}
{{ pc.country|flag }} {{ pc.country or '' }} {% if pc.send_time %}{{ pc.send_time.strftime('%Y-%m-%d') }}{% endif %}
{% endfor %}
{% endif %} {% endfor %} {% endif %}
{% endif %} {% endblock %}