{% extends "base.html" %} {% block title %}{{ profile_user.username }} {{ 'showcase.title'|t(lang) }}{% endblock %} {% block nav %}{% endblock %} {% block content %}

📮 {{ profile_user.username }} {{ 'showcase.title'|t(lang) }}

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

{{ 'showcase.empty'|t(lang) }}

{% 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 %}