aboutsummaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorAlban Gruin2017-09-27 14:58:06 +0200
committerAlban Gruin2017-09-27 14:58:06 +0200
commita43f7fa835fcdf9f591c3f759f5ab7545c9df5b3 (patch)
tree64098df1357185f69861edb1fdea3a384d2ac167 /templates
parentba343196f8305dfadf01f8a617b05e6d9723ce13 (diff)
Affichage d’un message lorsque quelqu’un consulte un emploi du temps périmé
Diffstat (limited to 'templates')
-rw-r--r--templates/timetable.html7
1 files changed, 6 insertions, 1 deletions
diff --git a/templates/timetable.html b/templates/timetable.html
index 7a30595..21afa24 100644
--- a/templates/timetable.html
+++ b/templates/timetable.html
@@ -4,6 +4,11 @@
{% block body %}
<h2>{{ group.timetable }} &ndash; {{ group }} &ndash; Semaine {{ week }}</h2>
- <p>Dernière mise à jour le {{ last_update|date:"l j F o" }} à {{ last_update|date:"H:i" }}</p>
+ <p>
+ {% if is_old_timetable %}
+ <b><a href="{% url "timetable" group.timetable.year.slug group.timetable.slug group.slug %}">Accéder à l’emploi du temps de cette semaine.</b></a><br />
+ {% endif %}
+ Dernière mise à jour le {{ last_update|date:"l j F o" }} à {{ last_update|date:"H:i" }}
+ </p>
{% include "timetable_common.html" %}
<p class="subscribe"><a href="{% url "ics" group.timetable.year.slug group.timetable.slug group.slug %}">ICS</a> &ndash; <a href="{% url "rss" group.timetable.year.slug group.timetable.slug group.slug %}">RSS</a> &ndash; <a href="{% url "atom" group.timetable.year.slug group.timetable.slug group.slug %}">Atom</a></p>{% endblock %}