aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlban Gruin2018-04-25 09:42:24 +0200
committerAlban Gruin2018-04-25 09:42:24 +0200
commit4c82869e3a590c982c43958e3e4b0f9fad440678 (patch)
treef9fc3eed1db9a0c033dc991d5d28bc10ea692079
parentfb3a3bc214b071083325a75a9546331150eaa8a5 (diff)
templates: remplacement de dt_prettyprint par date
-rw-r--r--templates/group_list.html2
-rw-r--r--templates/group_weeks_list.html2
-rw-r--r--templatetags/dt_week.py7
3 files changed, 3 insertions, 8 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> &mdash;
{% 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 %}&ndash; {% 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 %}&ndash; {% endif %}
{% empty %}
<em>aucun cours dans le mois à venir</em>
{% endfor %}
diff --git a/templates/group_weeks_list.html b/templates/group_weeks_list.html
index c348d5d..baf312e 100644
--- a/templates/group_weeks_list.html
+++ b/templates/group_weeks_list.html
@@ -4,5 +4,5 @@
{% block title %}Semaines du groupe {{ group }} &ndash; {% endblock %}
{% block pagetitle %}Semaines du groupe {{ group }}{% endblock %}
{% block url %}{% url "timetable" timetable.year.slug timetable.slug group.slug element.year element|dt_week %}{% endblock %}
-{% block element %}{{ element|dt_prettyprint }} (semaine {{ element|dt_week }}){% endblock %}
+{% block element %}{{ element|date:"Y/m/d" }} (semaine {{ element|dt_week }}){% endblock %}
{% block navigation %}<a href="{% url "groups" timetable.year.slug timetable.slug %}">Liste des groupes</a>{% endblock %}
diff --git a/templatetags/dt_week.py b/templatetags/dt_week.py
index de0db08..2d27481 100644
--- a/templatetags/dt_week.py
+++ b/templatetags/dt_week.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2017 Alban Gruin
+# Copyright (C) 2017-2018 Alban Gruin
#
# celcatsanitizer is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published
@@ -21,8 +21,3 @@ register = template.Library()
@register.filter
def dt_week(dt):
return dt.isocalendar()[1]
-
-
-@register.filter
-def dt_prettyprint(dt):
- return "{0}/{1:02d}/{2:02d}".format(dt.year, dt.month, dt.day)