aboutsummaryrefslogtreecommitdiff
path: root/views.py
diff options
context:
space:
mode:
authorAlban Gruin2017-10-29 15:17:03 +0100
committerAlban Gruin2017-10-29 15:17:03 +0100
commitf0790a2420684a39e2b48922beec1245f4446912 (patch)
tree33139271cdae2b371138b55ab8e7f11f23cc1fc8 /views.py
parent7b66e90a4ff559323bd0664b88e0cdefa0f38322 (diff)
Revert "Ajout d’une page pour lister les calendriers disponibles"
This reverts commit 7ef57a0226fa25b8ea5e9a6ff5526889dc300649.
Diffstat (limited to 'views.py')
-rw-r--r--views.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/views.py b/views.py
index 76b7127..9c38524 100644
--- a/views.py
+++ b/views.py
@@ -17,7 +17,6 @@ import datetime
from django.conf import settings
from django.db.models import Max
-from django.db.models.functions import Length
from django.http import Http404
from django.shortcuts import get_object_or_404, render
@@ -96,19 +95,5 @@ def timetable(request, year_slug, timetable_slug, group_slug, year=None, week=No
"year": year, "week": int(week),
"is_old_timetable": is_old_timetable})
-def calendar_list(request, year_slug, timetable_slug, group_slug):
- """Affiche une liste des ICS disponibles pour un groupe."""
- # On commence par récupérer l’emploi du temps associé, puis le groupe
- # Si la récupération de l’un d’entre eux échoue, on affiche une erreur 404.
- timetable = get_object_or_404(Timetable, year__slug=year_slug, slug=timetable_slug)
- group = get_object_or_404(Group, slug=group_slug, timetable=timetable)
-
- # On récupère les groupes « parents » au groupe spécifié.
- groups = Group.objects.get_parents(group).annotate(length=Length("subgroup")) \
- .order_by("length")
-
- # On réutilise encore la template principale
- return render(request, "index.html", {"group": group, "elements": groups})
-
def contact(request):
return render(request, "contact.html", {"email": settings.ADMINS[0][1]})