aboutsummaryrefslogtreecommitdiff
path: root/views.py
diff options
context:
space:
mode:
authorAlban Gruin2017-10-31 12:38:34 +0100
committerAlban Gruin2017-10-31 12:38:34 +0100
commit55ad46fe32ce8122d884dda4eb498e20e39622ad (patch)
tree6949c6fecd40967ca233d99607b7803022edf226 /views.py
parentb68c59c72be3a8e3d3201dca1941879508afcb3b (diff)
Suppression de l’ancienne page de contact
Diffstat (limited to 'views.py')
-rw-r--r--views.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/views.py b/views.py
index 7c19840..384fdd0 100644
--- a/views.py
+++ b/views.py
@@ -15,7 +15,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
@@ -103,6 +102,3 @@ def calendars(request, year_slug, timetable_slug, group_slug):
.order_by("length")
return render(request, "calendars.html", {"group": group, "groups": groups})
-
-def contact(request):
- return render(request, "contact.html", {"email": settings.ADMINS[0][1]})