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

8 lines
145 B
Python
Raw Normal View History

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