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[-\w]+)/$', EventView.as_view(), name='event'), url(r'^activity/(?P[0-9]+)/$', ActivityView.as_view(), name='activity'), ]