45 lines
1.5 KiB
Python
45 lines
1.5 KiB
Python
from __future__ import absolute_import, unicode_literals
|
|
|
|
import debug_toolbar
|
|
from django.conf import settings
|
|
from django.contrib import admin
|
|
from django.urls import include, re_path
|
|
from wagtail import VERSION as WAGTAIL_VERSION
|
|
from wagtail.admin import urls as wagtailadmin_urls
|
|
|
|
if WAGTAIL_VERSION >= (3, 0):
|
|
from wagtail.urls import urls as wagtail_urls
|
|
else:
|
|
from wagtail.core import urls as wagtail_urls
|
|
|
|
from wagtail.documents import urls as wagtaildocs_urls
|
|
|
|
from sandbox.apps.search import views as search_views
|
|
|
|
urlpatterns = [
|
|
re_path(r"^django-admin/", admin.site.urls),
|
|
re_path(r"^admin/", include(wagtailadmin_urls)),
|
|
re_path(r"^documents/", include(wagtaildocs_urls)),
|
|
re_path(r"^search/$", search_views.search, name="search"),
|
|
# 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:
|
|
re_path(r"", include(wagtail_urls)),
|
|
# Alternatively, if you want Wagtail pages to be served from a subpath
|
|
# of your site, rather than the site root:
|
|
# url(r'^pages/', include(wagtail_urls)),
|
|
]
|
|
|
|
|
|
if settings.DEBUG:
|
|
from django.conf.urls.static import static
|
|
from django.contrib.staticfiles.urls import staticfiles_urlpatterns
|
|
|
|
# Serve static and media files from development server
|
|
urlpatterns += staticfiles_urlpatterns()
|
|
urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
|
|
|
|
urlpatterns = [
|
|
re_path(r"^__debug__/", include(debug_toolbar.urls)),
|
|
] + urlpatterns
|