aboutsummaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorAlban Gruin2017-01-25 14:25:04 +0100
committerAlban Gruin2017-01-25 14:25:04 +0100
commita4a3aa91a9eacf0f67442d79d8aaee01b7a1256b (patch)
tree7926f34aba06cebf98d612dfc1273f8073d3b35f /templates
parenta98fcce79627994f397d457677082b9c5e1b6192 (diff)
Suppression du slug de l'emploi du temps dans les URLs ainsi que sa récupération manuelle inutile car
déjà référencée par le groupe
Diffstat (limited to 'templates')
-rw-r--r--templates/index.html2
-rw-r--r--templates/subscribe.html6
-rw-r--r--templates/timetable.html6
3 files changed, 7 insertions, 7 deletions
diff --git a/templates/index.html b/templates/index.html
index 5fe6678..812a991 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -61,7 +61,7 @@ li.course {
<section id="{{ timetable.slug }}">
<h3><a href="{{ timetable.url }}">{{ timetable.name }}</a></h3>
<ul>{% for group in groups %}{% if group.timetable.id == timetable.id %}
- <li>{{ group.name }} &ndash; {% for week in group.weeks %}<a href="{% url "timetable" timetable.slug week.year week|dt_week group.slug %}">{{ week|dt_prettyprint }}</a> {% endfor %}</li>{% endif %}{% endfor %}
+ <li>{{ group.name }} &ndash; {% for week in group.weeks %}<a href="{% url "timetable" group.slug week.year week|dt_week %}">{{ week|dt_prettyprint }}</a> {% endfor %}</li>{% endif %}{% endfor %}
</ul>
</section>{% endfor %}{% endblock %}
</div>
diff --git a/templates/subscribe.html b/templates/subscribe.html
index b1aa71b..2cd6d87 100644
--- a/templates/subscribe.html
+++ b/templates/subscribe.html
@@ -1,10 +1,10 @@
{% extends "index.html" %}
-{% block title %}S'abonner à {{ timetable.name }} &ndash; {{ group.name }}{% endblock %}
+{% block title %}S'abonner à {{ group.timetable.name }} &ndash; {{ group.name }}{% endblock %}
{% block body %}
- <h2>S'abonner à {{ timetable.name }} &ndash; {{ group.name }}</h2>
- <form action="{% url "subscribe" timetable.slug year week group.slug %}" method="post">
+ <h2>S'abonner à {{ group.timetable.name }} &ndash; {{ group.name }}</h2>
+ <form action="{% url "subscribe" group.slug year week %}" method="post">
{% csrf_token %}
{{ form }}
<input type="submit" value="S'abonner" />
diff --git a/templates/timetable.html b/templates/timetable.html
index 28f6005..9d05be6 100644
--- a/templates/timetable.html
+++ b/templates/timetable.html
@@ -1,9 +1,9 @@
{% extends "index.html" %}
-{% block title %}{{ timetable.name }} &ndash; {{ group.name }} &ndash; Semaine {{ week }} &ndash; {% endblock %}
+{% block title %}{{ group.timetable.name }} &ndash; {{ group.name }} &ndash; Semaine {{ week }} &ndash; {% endblock %}
{% block body %}
- <h2>{{ timetable.name }} &ndash; {{ group.name }} &ndash; Semaine {{ week }}</h2>
+ <h2>{{ group.timetable.name }} &ndash; {{ group.name }} &ndash; Semaine {{ week }}</h2>
<p>Dernière mise à jour le {{ last_update|date:"l j F o" }} à {{ last_update|date:"H:i" }}</p>{% for day in courses %}
<section>
<h3>{{ day.0.begin|date:"l j F o" }} &ndash; de {{ day.0.begin|date:"H:i" }} à {% with day|last as last %}{{ last.end|date:"H:i" }}{% endwith %}</h3>
@@ -11,4 +11,4 @@
<li class="course"><b>{{ course.name }}</b>, de {{ course.begin|date:"H:i" }} à {{ course.end|date:"H:i" }}{% if course.rooms.all|length > 0 %}<br /><em>Salle{% if course.rooms.all|length > 1 %}s{% endif %} {% for room in course.rooms.all %}{{ room }} {% endfor %}</em>{% endif %}</li>{% endfor %}
</ul>
</section>{% endfor %}
- <p><a class="subscribe" href="{% url "subscribe" timetable.slug year week group.slug %}">S'abonner à cet emploi du temps</a></p>{% endblock %}
+ <p><a class="subscribe" href="{% url "subscribe" group.slug year week %}">S'abonner à cet emploi du temps</a></p>{% endblock %}