1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/pyinventory_ynh.git synced 2024-09-03 20:16:09 +02:00
pyinventory_ynh/conf/urls.py

36 lines
1.3 KiB
Python
Raw Normal View History

2020-12-09 13:31:25 +01:00
from django.conf import settings
from django.conf.urls import include, static
from django.contrib import admin
from django.urls import path
# def debug_view(request):
# """ debug request.META """
# if not request.user.is_authenticated:
# from django.shortcuts import redirect
# return redirect('admin:index')
#
# import pprint
# meta = pprint.pformat(request.META)
# html = f'<html><body>request.META: <pre>{meta}</pre></body></html>'
# from django.http import HttpResponse
# return HttpResponse(html)
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
# Prefix all urls with "PATH_URL":
2020-12-09 13:31:25 +01:00
urlpatterns = [
2020-12-22 17:42:24 +01:00
# path(f'{settings.PATH_URL}/debug/', debug_view),
# MEDIA_URL contains the "PATH_URL" already:
path(settings.MEDIA_URL.lstrip('/'), include('django_tools.serve_media_app.urls')),
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
]
if settings.SERVE_FILES:
urlpatterns += static.static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
2020-12-09 13:31:25 +01:00
else:
# 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