aboutsummaryrefslogtreecommitdiff
path: root/urls.py
diff options
context:
space:
mode:
authorAlban Gruin2017-09-10 12:26:40 +0200
committerAlban Gruin2017-09-10 12:26:40 +0200
commit6eef540f3de6b6b7a81b058f99950da40af00359 (patch)
tree3b52a00451d132af64ca3b9480f5dbad66eaf4f2 /urls.py
parent965fb737b5ca4f258cc8f9ff1bd52ca1ce18a635 (diff)
Ajout d’une page contact. L’adresse email est brouillée.
Diffstat (limited to 'urls.py')
-rw-r--r--urls.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/urls.py b/urls.py
index 2e731b5..58cf019 100644
--- a/urls.py
+++ b/urls.py
@@ -18,6 +18,7 @@ from . import feeds, views
urlpatterns = [
url(r"^$", views.index, name="index"),
+ url(r"^contact$", views.contact, name="contact"),
url(r"^(?P<year_slug>[-\w]+)/$", views.mention_list, name="mentions"),
url(r"^(?P<year_slug>[-\w]+)/(?P<timetable_slug>[-\w]+)/$", views.group_list, name="groups"),
url(r"^(?P<year_slug>[-\w]+)/(?P<timetable_slug>[-\w]+)/(?P<group_slug>[-\w]+)/$", views.timetable, name="timetable"),