aboutsummaryrefslogtreecommitdiff
path: root/urls.py
diff options
context:
space:
mode:
authorAlban Gruin2018-01-17 12:34:11 +0100
committerAlban Gruin2018-01-17 12:43:02 +0100
commita2fcd4c7c42b6c02ff8ff7dac4aa23b3d17407de (patch)
tree8316d0f78e4e9b73a014af7596357edb003446e0 /urls.py
parentb55297c4d0de64501a6baf3b1f255210de492e97 (diff)
Base du formulaire de QSJPS
Diffstat (limited to 'urls.py')
-rw-r--r--urls.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/urls.py b/urls.py
index 22011c4..f24bbba 100644
--- a/urls.py
+++ b/urls.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2017 Alban Gruin
+# Copyright (C) 2017-2018 Alban Gruin
#
# celcatsanitizer is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published
@@ -20,6 +20,7 @@ urlpatterns = [
url(r"^$", views.index, name="index"),
url(r"^pages/", include("django.contrib.flatpages.urls")),
url(r"^salles/$", views.rooms, name="rooms"),
+ url(r"^salles/qsjps$", views.qsjps, name="qsjps"),
url(r"^salles/(?P<room_slug>[-\w]+)/$", views.room_timetable, name="room-timetable"),
url(r"^salles/(?P<room_slug>[-\w]+)/(?P<year>[0-9]{4})/(?P<week>[0-4]?[0-9]|5[0-3])$", views.room_timetable, name="room-timetable"),
url(r"^(?P<year_slug>[-\w]+)/$", views.mention_list, name="mentions"),