diff options
author | Alban Gruin | 2017-11-03 18:09:41 +0100 |
---|---|---|
committer | Alban Gruin | 2017-11-03 18:09:41 +0100 |
commit | 959bbaa5170aea4a9600d774280d44fc5107fdae (patch) | |
tree | aba0b535096b0ae6fa75ed243fb5374df8ed73fb /templates/calendars.html | |
parent | 1edd7f6b2431095b27fd98205bb2ce5f462183e9 (diff) | |
parent | 5082e2aa0083a1c78cd39e86cb141786c2ab6efe (diff) |
Merge branch 'fusion/alban'
Diffstat (limited to 'templates/calendars.html')
-rw-r--r-- | templates/calendars.html | 13 |
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 %} |