poulpe/event/urls.py

8 lines
152 B
Python
Raw Normal View History

from django.conf.urls import url
2017-02-18 20:20:43 +01:00
from event.views import Index
app_name = 'event'
urlpatterns = [
2017-02-18 20:20:43 +01:00
url(r'^$', Index.as_view(), name='index'),
]