diff options
author | Valérie-Emma Leroux <emma@proxience.com> | 2015-02-26 19:06:17 +0100 |
---|---|---|
committer | Valérie-Emma Leroux <emma@proxience.com> | 2015-02-26 19:06:17 +0100 |
commit | f5fd043dcfa0b34a152cab2a8d191abfbc9c5977 (patch) | |
tree | 5a818845e25ba75df1251099f69b288d9ba282aa | |
parent | f18e2a29bfa35cc1c4f63361b1e59eb5132711be (diff) | |
download | Chimère - projet Saclay-f5fd043dcfa0b34a152cab2a8d191abfbc9c5977.tar.bz2 Chimère - projet Saclay-f5fd043dcfa0b34a152cab2a8d191abfbc9c5977.zip |
Format d'affichage de la date dans le template detail
-rw-r--r-- | templates/chimere/detail.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/chimere/detail.html b/templates/chimere/detail.html index b511eae..f6560b6 100644 --- a/templates/chimere/detail.html +++ b/templates/chimere/detail.html @@ -14,8 +14,8 @@ {%endif%} <div> {% if dated %} - <p id='detail_start_date'><label>{% trans "Date:" %}</label> <span>{{marker.start_date|date:"D d M Y"}} - {% if marker.end_date %} - {{marker.end_date|date:"D d M Y"}}</p>{% endif %}</span> + <p id='detail_start_date'><label>{% trans "Date:" %}</label> <span>{{marker.start_date|date:"l d F Y"}} + {% if marker.end_date %} - {{marker.end_date|date:"l d F Y"}}</p>{% endif %}</span> {% endif %} {% if marker.description %} <div id='description_long_{{marker.pk}}' class='description'>{{ marker.description|sanitize:"p b i br hr strong em span:style a:href:target ul li ol h1 h2 h3 h4 table td tr th"|safe}}</div> |