aircox/aircox_web/urls.py
2019-07-01 05:02:13 +02:00

10 lines
186 B
Python

from django.conf.urls import url
from . import views
urlpatterns = [
url(r"^(?P<path>[-\w/]+)/$", views.route_page, name="page"),
url(r"^$", views.route_page, name="root"),
]