From 2b7a41a2189d61d735e0ec871a2fd9377de6cb13 Mon Sep 17 00:00:00 2001 From: Yoan Le Clanche Date: Mon, 13 Feb 2023 13:30:23 +0100 Subject: [PATCH] fix incorrect date : https://trackers.pilotsystems.net/prebarreau/0638 --- .../templates/teleforma/seminar_testimonial_payback.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/teleforma/templates/teleforma/seminar_testimonial_payback.html b/teleforma/templates/teleforma/seminar_testimonial_payback.html index 6d2b4962..07745f5d 100644 --- a/teleforma/templates/teleforma/seminar_testimonial_payback.html +++ b/teleforma/templates/teleforma/seminar_testimonial_payback.html @@ -161,7 +161,7 @@ {{ first_revision.date|date:'m' }}
- {{ first_revision.date|date:'yy' }} + {{ first_revision.date|date:'Y' }}
@@ -171,7 +171,7 @@ {% if testimonial.date_modified %}{{ testimonial.date_modified|date:'m' }}{% else %}{{ testimonial.date_added|date:'m' }}{% endif %}
- {% if testimonial.date_modified %}{{ testimonial.date_modified|date:'y' }}{% else %}{{ testimonial.date_added|date:'yy' }}{% endif %} + {% if testimonial.date_modified %}{{ testimonial.date_modified|date:'Y' }}{% else %}{{ testimonial.date_added|date:'Y' }}{% endif %}
-- 2.39.5