diff options
author | Alban Gruin | 2018-01-17 12:34:11 +0100 |
---|---|---|
committer | Alban Gruin | 2018-01-17 12:43:02 +0100 |
commit | a2fcd4c7c42b6c02ff8ff7dac4aa23b3d17407de (patch) | |
tree | 8316d0f78e4e9b73a014af7596357edb003446e0 /urls.py | |
parent | b55297c4d0de64501a6baf3b1f255210de492e97 (diff) |
Base du formulaire de QSJPS
Diffstat (limited to 'urls.py')
-rw-r--r-- | urls.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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"), |