10 lines
348 B
Python
10 lines
348 B
Python
from django.conf.urls import url
|
|
from event.views import Index, EventView, ActivityView
|
|
|
|
app_name = 'event'
|
|
urlpatterns = [
|
|
# url(r'^$', Index.as_view(), name='index'),
|
|
url(r'^(?P<slug>[-\w]+)/$', EventView.as_view(), name='event'),
|
|
url(r'^activity/(?P<pk>[0-9]+)/$', ActivityView.as_view(),
|
|
name='activity'),
|
|
]
|