bornhack-website/program/urls.py

7 lines
129 B
Python
Raw Normal View History

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