7 lines
129 B
Python
7 lines
129 B
Python
from django.conf.urls import url
|
|
from views import *
|
|
|
|
urlpatterns = [
|
|
url(r'^$', ProgramIndexView.as_view(), name='index')
|
|
]
|