diff options
author | Alban Gruin | 2018-04-25 09:42:24 +0200 |
---|---|---|
committer | Alban Gruin | 2018-04-25 09:42:24 +0200 |
commit | 4c82869e3a590c982c43958e3e4b0f9fad440678 (patch) | |
tree | f9fc3eed1db9a0c033dc991d5d28bc10ea692079 /templates/group_list.html | |
parent | fb3a3bc214b071083325a75a9546331150eaa8a5 (diff) |
templates: remplacement de dt_prettyprint par date
Diffstat (limited to 'templates/group_list.html')
-rw-r--r-- | templates/group_list.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/group_list.html b/templates/group_list.html index bca8c70..d88f144 100644 --- a/templates/group_list.html +++ b/templates/group_list.html @@ -6,7 +6,7 @@ {% block lelement %}<a class="text"{% if element.weeks is not None %} href="{% block gurl %}{% url "timetable" timetable.year.slug timetable.slug element.slug %}{% endblock %}"{% endif %}>{{ element }}</a> — {% for week in element.weeks %} - <a href="{% block wurl %}{% url "timetable" timetable.year.slug timetable.slug element.slug week.year week|dt_week %}{% endblock %}">{{ week|dt_prettyprint }}</a> {% if not forloop.last %}– {% endif %} + <a href="{% block wurl %}{% url "timetable" timetable.year.slug timetable.slug element.slug week.year week|dt_week %}{% endblock %}">{{ week|date:"Y/m/d" }}</a> {% if not forloop.last %}– {% endif %} {% empty %} <em>aucun cours dans le mois à venir</em> {% endfor %} |