mirror of
https://github.com/YunoHost-Apps/django-for-runners_ynh.git
synced 2024-09-03 18:26:16 +02:00
Bugfix urls.py
This commit is contained in:
parent
849e158040
commit
819309797b
1 changed files with 13 additions and 20 deletions
|
@ -1,28 +1,21 @@
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
from django.conf.urls import include, static, url
|
|
||||||
from django.conf.urls.i18n import i18n_patterns
|
|
||||||
from django.contrib import admin
|
from django.contrib import admin
|
||||||
from django.urls import path
|
from django.urls import path
|
||||||
from django.views.generic import RedirectView
|
from django.views.generic import RedirectView
|
||||||
from for_runners.views.media_files import UserMediaView
|
|
||||||
|
|
||||||
admin.autodiscover()
|
|
||||||
|
|
||||||
|
|
||||||
urlpatterns = i18n_patterns(
|
# settings.PATH_URL is the $YNH_APP_ARG_PATH
|
||||||
path("{settings.PATH_URL}/admin/", admin.site.urls),
|
if settings.PATH_URL:
|
||||||
|
admin.autodiscover()
|
||||||
|
|
||||||
# FIXME:
|
urlpatterns = [
|
||||||
# until there is not real CMS pages: redirect to the interesting admin page:
|
# TODO:
|
||||||
url(r"^{settings.PATH_URL}/$", RedirectView.as_view(pattern_name='admin:index')),
|
# XXX: Hack - the 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/', admin.site.urls),
|
||||||
urlpatterns = [
|
path('', RedirectView.as_view(pattern_name='admin:index')),
|
||||||
# TODO: Change from user name to ID?
|
]
|
||||||
path('{settings.PATH_URL}/media/<slug:user_name>/<path:path>', UserMediaView.as_view()),
|
else:
|
||||||
] + urlpatterns
|
# Installed to domain root, without a path prefix?
|
||||||
|
from inventory_project.urls import urlpatterns # noqa
|
||||||
if settings.DEBUG:
|
|
||||||
import debug_toolbar
|
|
||||||
urlpatterns = [url(r'^__debug__/', include(debug_toolbar.urls))] + urlpatterns
|
|
||||||
|
|
Loading…
Reference in a new issue