diff options
Diffstat (limited to 'templates/timetable.html')
| -rw-r--r-- | templates/timetable.html | 6 | 
1 files changed, 3 insertions, 3 deletions
| 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 }} – {{ group.name }} – Semaine {{ week }} – {% endblock %} +{% block title %}{{ group.timetable.name }} – {{ group.name }} – Semaine {{ week }} – {% endblock %}  {% block body %} -      <h2>{{ timetable.name }} – {{ group.name }} – Semaine {{ week }}</h2> +      <h2>{{ group.timetable.name }} – {{ group.name }} – 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" }} – 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 %} | 
