aboutsummaryrefslogtreecommitdiff
path: root/urls.py
diff options
context:
space:
mode:
authorAlban Gruin2017-10-29 15:17:03 +0100
committerAlban Gruin2017-10-29 15:17:03 +0100
commitf0790a2420684a39e2b48922beec1245f4446912 (patch)
tree33139271cdae2b371138b55ab8e7f11f23cc1fc8 /urls.py
parent7b66e90a4ff559323bd0664b88e0cdefa0f38322 (diff)
Revert "Ajout d’une page pour lister les calendriers disponibles"
This reverts commit 7ef57a0226fa25b8ea5e9a6ff5526889dc300649.
Diffstat (limited to 'urls.py')
-rw-r--r--urls.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/urls.py b/urls.py
index b30e8d9..d269400 100644
--- a/urls.py
+++ b/urls.py
@@ -22,7 +22,6 @@ urlpatterns = [
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"),
- url(r"^(?P<year_slug>[-\w]+)/(?P<timetable_slug>[-\w]+)/(?P<group_slug>[-\w]+)/calendars$", views.calendar_list, name="calendar-list"),
url(r"^(?P<year_slug>[-\w]+)/(?P<timetable_slug>[-\w]+)/(?P<group_slug>[-\w]+)/calendar.ics$", feeds.IcalFeed(), name="ics"),
url(r"^(?P<year_slug>[-\w]+)/(?P<timetable_slug>[-\w]+)/(?P<group_slug>[-\w]+)/calendar-group.ics$", feeds.IcalOnlyOneFeed(), name="ics-group"),
url(r"^(?P<year_slug>[-\w]+)/(?P<timetable_slug>[-\w]+)/(?P<group_slug>[-\w]+)/feed.atom$", feeds.AtomFeed(), name="atom"),