48 lines
1.6 KiB
Python
48 lines
1.6 KiB
Python
from django.conf import settings
|
|
from django.contrib import admin
|
|
from django.urls import include, path, re_path
|
|
from wagtail import urls as wagtail_urls
|
|
from wagtail.admin import urls as wagtailadmin_urls
|
|
from wagtail.documents import urls as wagtaildocs_urls
|
|
from wagtail.images.views.serve import ServeView
|
|
|
|
from website.search import views as search_views
|
|
|
|
urlpatterns = [
|
|
path("django-admin/", admin.site.urls),
|
|
path("admin/", include(wagtailadmin_urls)),
|
|
path("documents/", include(wagtaildocs_urls)),
|
|
path("search/", search_views.search, name="search"),
|
|
path(
|
|
"static-pygments/",
|
|
include("website.contrib.code_block.urls", namespace="static-pygments"),
|
|
),
|
|
re_path(
|
|
r"^images/([^/]*)/(\d*)/([^/]*)/[^/]*$",
|
|
ServeView.as_view(action="redirect"),
|
|
name="wagtailimages_serve",
|
|
),
|
|
]
|
|
|
|
|
|
if settings.DEBUG:
|
|
from django.conf.urls.static import static
|
|
|
|
# Serve media files from development server
|
|
urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
|
|
|
|
# Add django-browser-reload
|
|
urlpatterns.append(path("__reload__/", include("django_browser_reload.urls")))
|
|
|
|
# Add django-debug-toolbar
|
|
urlpatterns.append(path("__debug__/", include("debug_toolbar.urls")))
|
|
|
|
urlpatterns = urlpatterns + [
|
|
# For anything not caught by a more specific rule above, hand over to
|
|
# Wagtail's page serving mechanism. This should be the last pattern in
|
|
# the list:
|
|
path("", include(wagtail_urls)),
|
|
# Alternatively, if you want Wagtail pages to be served from a subpath
|
|
# of your site, rather than the site root:
|
|
# path("pages/", include(wagtail_urls)),
|
|
]
|