feat(showcase): display send_time/receive_time on personal showcase cards

This commit is contained in:
2026-07-07 13:24:58 +08:00
parent b5716ff340
commit 5de27f1937

View File

@@ -52,6 +52,7 @@
{% if pc.country_from and pc.country %}<span>{{ pc.country_from|flag }}→{{ pc.country|flag }}</span> {% if pc.country_from and pc.country %}<span>{{ pc.country_from|flag }}→{{ pc.country|flag }}</span>
{% elif pc.country %}<span>{{ pc.country|flag }}</span> {% elif pc.country %}<span>{{ pc.country|flag }}</span>
{% endif %} {% endif %}
{% if pc.send_time %}<span>{{ pc.send_time.strftime('%Y-%m-%d') }}</span>{% endif %}
</div> </div>
</div> </div>
</div> </div>
@@ -76,6 +77,7 @@
{% if pc.country_from and pc.country %}<span>{{ pc.country_from|flag }}→{{ pc.country|flag }}</span> {% if pc.country_from and pc.country %}<span>{{ pc.country_from|flag }}→{{ pc.country|flag }}</span>
{% elif pc.country %}<span>{{ pc.country|flag }}</span> {% elif pc.country %}<span>{{ pc.country|flag }}</span>
{% endif %} {% endif %}
{% if pc.send_time %}<span>{{ pc.send_time.strftime('%Y-%m-%d') }}</span>{% endif %}
</div> </div>
</div> </div>
</div> </div>
@@ -99,6 +101,7 @@
{% if pc.country_from and pc.country %}<span>{{ pc.country_from|flag }}→{{ pc.country|flag }}</span> {% if pc.country_from and pc.country %}<span>{{ pc.country_from|flag }}→{{ pc.country|flag }}</span>
{% elif pc.country %}<span>{{ pc.country|flag }}</span> {% elif pc.country %}<span>{{ pc.country|flag }}</span>
{% endif %} {% endif %}
{% if pc.receive_time %}<span>{{ pc.receive_time.strftime('%Y-%m-%d') }}</span>{% endif %}
</div> </div>
</div> </div>
</div> </div>
@@ -123,6 +126,7 @@
{% if pc.country_from and pc.country %}<span>{{ pc.country_from|flag }}→{{ pc.country|flag }}</span> {% if pc.country_from and pc.country %}<span>{{ pc.country_from|flag }}→{{ pc.country|flag }}</span>
{% elif pc.country %}<span>{{ pc.country|flag }}</span> {% elif pc.country %}<span>{{ pc.country|flag }}</span>
{% endif %} {% endif %}
{% if pc.receive_time %}<span>{{ pc.receive_time.strftime('%Y-%m-%d') }}</span>{% endif %}
</div> </div>
</div> </div>
</div> </div>