blob: 41b61a9f510c1441810baf4679ff6b62a128d247 (
plain)
1
2
3
4
5
6
7
8
|
from django.conf.urls import url, handler404
from . import views
urlpatterns = [
url(r"^$", views.index, name="index"),
url(r"^(?P<timetable_slug>[-\w]+)/(?P<group_slug>[-\w]+)/$", views.timetable, name="timetable"),
]
|