|
@@ -2,25 +2,25 @@ from django.conf import settings
|
|
|
from django.urls import include, path, re_path
|
|
|
from django.contrib import admin
|
|
|
from wagtail.documents import urls as wagtaildocs_urls
|
|
|
-from coderedcms import admin_urls as coderedadmin_urls
|
|
|
-from coderedcms import search_urls as coderedsearch_urls
|
|
|
-from coderedcms import urls as codered_urls
|
|
|
+from coderedcms import admin_urls as crx_admin_urls
|
|
|
+from coderedcms import search_urls as crx_search_urls
|
|
|
+from coderedcms import urls as crx_urls
|
|
|
|
|
|
urlpatterns = [
|
|
|
# Admin
|
|
|
path("django-admin/", admin.site.urls),
|
|
|
- path("admin/", include(coderedadmin_urls)),
|
|
|
+ path("admin/", include(crx_admin_urls)),
|
|
|
# Documents
|
|
|
path("docs/", include(wagtaildocs_urls)),
|
|
|
# Search
|
|
|
- path("search/", include(coderedsearch_urls)),
|
|
|
+ path("search/", include(crx_search_urls)),
|
|
|
# For anything not caught by a more specific rule above, hand over to
|
|
|
# the page serving mechanism. This should be the last pattern in
|
|
|
# the list:
|
|
|
- re_path(r"", include(codered_urls)),
|
|
|
- # Alternatively, if you want CMS pages to be served from a subpath
|
|
|
+ re_path(r"", include(crx_urls)),
|
|
|
+ # Alternatively, if you want pages to be served from a subpath
|
|
|
# of your site, rather than the site root:
|
|
|
- # re_path(r"^pages/", include(codered_urls)),
|
|
|
+ # re_path(r"^pages/", include(crx_urls)),
|
|
|
]
|
|
|
|
|
|
|