aboutsummaryrefslogtreecommitdiff
path: root/templates/calendars.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/calendars.html')
-rw-r--r--templates/calendars.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/templates/calendars.html b/templates/calendars.html
new file mode 100644
index 0000000..d97ea78
--- /dev/null
+++ b/templates/calendars.html
@@ -0,0 +1,13 @@
+{% extends "index.html" %}
+
+{% block title %}ICS disponibles pour le groupe {{ group }} – {% endblock %}
+
+{% block body %}
+ <h2>ICS disponibles pour le groupe {{ group }}</h2>
+ <ul>
+ <li><a href="{% url "ics" group.timetable.year.slug group.timetable.slug group.slug %}">Un seul ICS pour tous les cours</a></li>
+{% for group in groups %}
+ <li><a href="{% url "ics-group" group.timetable.year.slug group.timetable.slug group.slug %}">ICS des cours du groupe {{ group }} uniquement</a></li>
+{% endfor %}
+ </ul>
+{% endblock %}