2020-12-09 13:31:25 +01:00
|
|
|
from django.conf import settings
|
2022-09-15 18:16:57 +02:00
|
|
|
from django.conf.urls import include
|
2020-12-19 20:17:57 +01:00
|
|
|
from django.contrib import admin
|
2020-12-09 12:05:24 +01:00
|
|
|
from django.urls import path
|
|
|
|
|
2020-12-20 19:42:08 +01:00
|
|
|
|
2020-12-09 13:31:25 +01:00
|
|
|
if settings.PATH_URL:
|
2020-12-22 17:42:24 +01:00
|
|
|
# settings.PATH_URL is the $YNH_APP_ARG_PATH
|
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
|
|
|
# MEDIA_URL contains the "PATH_URL" already:
|
|
|
|
path(settings.MEDIA_URL.lstrip('/'), include('django_tools.serve_media_app.urls')),
|
2022-01-07 18:12:38 +01:00
|
|
|
path(f'{settings.PATH_URL}/', admin.site.urls),
|
|
|
|
path(f'{settings.PATH_URL}/ckeditor/', include('ckeditor_uploader.urls')),
|
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
|