diff options
author | Alban Gruin | 2017-09-12 21:42:52 +0200 |
---|---|---|
committer | Alban Gruin | 2017-09-12 21:42:52 +0200 |
commit | 5490a366c2acba45cc617a825904ba95eeb6b374 (patch) | |
tree | 315cfecea08bcf3cb671ddf28ef7b000016a04b7 /urls.py | |
parent | 5a391f46fafee98b653f9c64219ad17844f7e340 (diff) |
Ajout d’une page contact. L’adresse email est brouillée.
Diffstat (limited to 'urls.py')
-rw-r--r-- | urls.py | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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"), |