1
Fork 0
theorangeone.net-legacy/project/pages/urls/core.py

7 lines
145 B
Python

from django.conf.urls import url
from project.pages.views import core
urlpatterns = [
url(r'^$', core.IndexView.as_view(), name='index')
]