work hard on this
This commit is contained in:
9
aircox_web/urls.py
Normal file
9
aircox_web/urls.py
Normal file
@ -0,0 +1,9 @@
|
||||
from django.conf.urls import url
|
||||
|
||||
from . import views
|
||||
|
||||
urlpatterns = [
|
||||
url(r"^(?P<path>[-\w/]+)/$", views.page_detail, name="page"),
|
||||
url(r"^$", views.page_detail, name="root"),
|
||||
]
|
||||
|
Reference in New Issue
Block a user