aboutsummaryrefslogtreecommitdiff
path: root/templates/calendars.html
blob: e6fcd9faa3348e7121ad872d4ea030872d3d623c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% extends "index.html" %}

{% block title %}ICS disponibles pour le groupe {{ group }} – {% endblock %}

{% block body %}
      <h2>ICS disponibles pour le groupe {{ group }}</h2>
      <p>
        Le format ICS (ou iCalendar) permet d’importer un calendrier
        dans un agenda électronique.<br />
        <a href="https://fr.wikipedia.org/wiki/ICalendar">En savoir plus</a>
      </p>
      <ul>
        <li><a href="{% url "ics" timetable.year.slug timetable.slug group.slug %}">Un seul ICS pour tous les cours</a></li>
{% for group in groups %}
        <li><a href="{% url "ics-group" timetable.year.slug timetable.slug group.slug %}">ICS des cours du groupe {{ group }} uniquement</a></li>
{% endfor %}
      </ul>
{% endblock %}