urls.py 229 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 from django.conf.urls import url from . import views urlpatterns = [ url(r'^$', views.GeneralIndex.as_view(), name='manage_general'), url(r'^participants/$', views.GeneralParticipants.as_view(), name='participants_general'), ]