2020-12-09 13:31:25 +01:00
|
|
|
from django.conf import settings
|
2020-12-19 20:17:57 +01:00
|
|
|
from django.conf.urls import include, static
|
|
|
|
from django.contrib import admin
|
2020-12-09 12:05:24 +01:00
|
|
|
from django.urls import path
|
2020-12-19 20:17:57 +01:00
|
|
|
from django.views.generic import RedirectView
|
2020-12-09 12:05:24 +01:00
|
|
|
|
2020-12-09 13:31:25 +01:00
|
|
|
# settings.PATH_URL is the $YNH_APP_ARG_PATH
|
|
|
|
if settings.PATH_URL:
|
2020-12-19 20:17:57 +01:00
|
|
|
# Prefix all urls with "PATH_URL":
|
2020-12-09 13:31:25 +01:00
|
|
|
urlpatterns = [
|
2020-12-19 20:17:57 +01:00
|
|
|
path(f'{settings.PATH_URL}/admin/', admin.site.urls),
|
|
|
|
|
|
|
|
path(f'{settings.PATH_URL}/', RedirectView.as_view(pattern_name='admin:index')),
|
2020-12-09 19:58:42 +01:00
|
|
|
|
2020-12-19 20:17:57 +01:00
|
|
|
path(f'{settings.PATH_URL}/ckeditor/', include('ckeditor_uploader.urls')),
|
|
|
|
|
|
|
|
# MEDIA_URL contains the "PATH_URL" already:
|
|
|
|
path(settings.MEDIA_URL.lstrip('/'), include('django_tools.serve_media_app.urls')),
|
2020-12-09 13:31:25 +01:00
|
|
|
]
|
2020-12-19 20:17:57 +01:00
|
|
|
if settings.SERVE_FILES:
|
|
|
|
urlpatterns += static.static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
|
2020-12-09 13:31:25 +01:00
|
|
|
else:
|
2020-12-19 20:17:57 +01:00
|
|
|
# Installed to domain root, without a path prefix
|
|
|
|
# Just use the default project urls.py
|
2020-12-09 13:31:25 +01:00
|
|
|
from inventory_project.urls import urlpatterns # noqa
|