From 241ab6681c04f66b1c4851f2d4c3fc3fe054fd32 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Fri, 28 Jun 2013 16:27:15 +0200 Subject: [PATCH] fix testimonial list dates --- teleforma/templates/teleforma/testimonials.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/teleforma/templates/teleforma/testimonials.html b/teleforma/templates/teleforma/testimonials.html index 3e9e7327..4b5c0b6c 100644 --- a/teleforma/templates/teleforma/testimonials.html +++ b/teleforma/templates/teleforma/testimonials.html @@ -61,19 +61,19 @@ {% trans "Training testimonial" %} - {% trans "validated on" %} {{ testimonial.date_added|date:'j F Y' }} + {% trans "validated on" %} {% if testimonial.date_modified %}{{ testimonial.date_modified|date:'j F Y' }}{% else %}{{ testimonial.date_added|date:'j F Y' }}{% endif %} {% trans "Knowledge validation testimonial" %} ({% trans "only to have support of the training costs" %}) - {% trans "validated on" %} {{ testimonial.date_added|date:'j F Y' }} + {% trans "validated on" %} {% if testimonial.date_modified %}{{ testimonial.date_modified|date:'j F Y' }}{% else %}{{ testimonial.date_added|date:'j F Y' }}{% endif %} {% trans "Payback testimonial" %} ({% trans "only to have support of the training costs" %}) - {% trans "validated on" %} {{ testimonial.date_added|date:'j F Y' }} + {% trans "validated on" %} {% if testimonial.date_modified %}{{ testimonial.date_modified|date:'j F Y' }}{% else %}{{ testimonial.date_added|date:'j F Y' }}{% endif %} -- 2.39.5