bornhack-website/program/urls.py

7 lines
124 B
Python
Raw Normal View History

2016-07-13 17:13:47 +00:00
from django.conf.urls import url
from views import *
urlpatterns = [
2016-07-13 20:37:20 +00:00
url(r'^$', ProgramView.as_view(), name='index')
2016-07-13 17:13:47 +00:00
]