7 lines
133 B
Python
7 lines
133 B
Python
from django.conf.urls import url
|
|
from .views import page_view
|
|
|
|
|
|
urlpatterns = [
|
|
url(r'^(?P<path>.*)', page_view, name='page'),
|
|
]
|