From 5de27f1937aedfd56143b683ea8fc322c8e69575 Mon Sep 17 00:00:00 2001 From: Zichao Lin Date: Tue, 7 Jul 2026 13:24:58 +0800 Subject: [PATCH] feat(showcase): display send_time/receive_time on personal showcase cards --- app/templates/showcase.html | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/templates/showcase.html b/app/templates/showcase.html index 7370b4f..cff6b77 100644 --- a/app/templates/showcase.html +++ b/app/templates/showcase.html @@ -52,6 +52,7 @@ {% if pc.country_from and pc.country %}{{ pc.country_from|flag }}→{{ pc.country|flag }} {% elif pc.country %}{{ pc.country|flag }} {% endif %} + {% if pc.send_time %}{{ pc.send_time.strftime('%Y-%m-%d') }}{% endif %} @@ -76,6 +77,7 @@ {% if pc.country_from and pc.country %}{{ pc.country_from|flag }}→{{ pc.country|flag }} {% elif pc.country %}{{ pc.country|flag }} {% endif %} + {% if pc.send_time %}{{ pc.send_time.strftime('%Y-%m-%d') }}{% endif %} @@ -99,6 +101,7 @@ {% if pc.country_from and pc.country %}{{ pc.country_from|flag }}→{{ pc.country|flag }} {% elif pc.country %}{{ pc.country|flag }} {% endif %} + {% if pc.receive_time %}{{ pc.receive_time.strftime('%Y-%m-%d') }}{% endif %} @@ -123,6 +126,7 @@ {% if pc.country_from and pc.country %}{{ pc.country_from|flag }}→{{ pc.country|flag }} {% elif pc.country %}{{ pc.country|flag }} {% endif %} + {% if pc.receive_time %}{{ pc.receive_time.strftime('%Y-%m-%d') }}{% endif %}