2016-11-06 15:39:14 +01:00
|
|
|
"""
|
|
|
|
Fichier principal de configuration des urls du projet GestioCOF
|
|
|
|
"""
|
2016-07-09 19:49:38 +02:00
|
|
|
from django.conf import settings
|
2018-02-03 22:34:37 +01:00
|
|
|
from django.conf.urls.i18n import i18n_patterns
|
2016-07-09 19:49:38 +02:00
|
|
|
from django.conf.urls.static import static
|
2016-05-21 23:57:36 +02:00
|
|
|
from django.contrib import admin
|
2019-04-12 17:05:18 +02:00
|
|
|
from django.urls import include, path
|
2016-07-18 18:46:48 +02:00
|
|
|
|
2020-08-11 17:19:32 +02:00
|
|
|
# Website administration (independent from installed apps)
|
2016-07-09 21:19:37 +02:00
|
|
|
admin.autodiscover()
|
2016-11-06 01:36:10 +01:00
|
|
|
urlpatterns = [
|
2019-04-12 17:05:18 +02:00
|
|
|
path("admin/doc/", include("django.contrib.admindocs.urls")),
|
|
|
|
path("admin/", admin.site.urls),
|
2016-09-12 22:08:39 +02:00
|
|
|
]
|
|
|
|
|
2020-08-11 17:20:52 +02:00
|
|
|
# App-specific urls
|
|
|
|
# TODO : mettre le préfixe de bds à "" sur gestioBDS ?
|
|
|
|
app_dict = {
|
|
|
|
"bds": "bds/",
|
|
|
|
"gestioncof": "",
|
|
|
|
"bda": "bda/",
|
|
|
|
"petitscours": "petitcours/",
|
|
|
|
"kfet": "k-fet",
|
|
|
|
# events module is still experimental !
|
|
|
|
"events": "event_v2/",
|
|
|
|
"authens": "authens/",
|
|
|
|
}
|
|
|
|
for (app_name, url_prefix) in app_dict.items():
|
|
|
|
if app_name in settings.INSTALLED_APPS:
|
|
|
|
urlpatterns += [path(url_prefix, include("{}.urls".format(app_name)))]
|
|
|
|
|
|
|
|
|
|
|
|
if "django_js_reverse" in settings.INSTALLED_APPS:
|
2020-07-04 13:30:54 +02:00
|
|
|
from django_js_reverse.views import urls_js
|
|
|
|
|
2020-05-09 16:21:40 +02:00
|
|
|
urlpatterns += [
|
|
|
|
path("jsreverse/", urls_js, name="js_reverse"),
|
|
|
|
]
|
|
|
|
|
2018-10-06 12:35:49 +02:00
|
|
|
if "debug_toolbar" in settings.INSTALLED_APPS:
|
2016-11-06 15:39:14 +01:00
|
|
|
import debug_toolbar
|
2018-10-06 12:35:49 +02:00
|
|
|
|
2019-04-12 17:05:18 +02:00
|
|
|
urlpatterns += [path("__debug__/", include(debug_toolbar.urls))]
|
2016-11-06 15:39:14 +01:00
|
|
|
|
2017-05-30 20:44:30 +02:00
|
|
|
if settings.DEBUG:
|
2016-11-06 01:36:10 +01:00
|
|
|
# Si on est en production, MEDIA_ROOT est servi par Apache.
|
|
|
|
# Il faut dire à Django de servir MEDIA_ROOT lui-même en développement.
|
2018-10-06 12:35:49 +02:00
|
|
|
urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
|
2017-05-30 20:44:30 +02:00
|
|
|
|
2020-08-11 17:20:52 +02:00
|
|
|
# Wagtail URLs (wagtail.core urls must be last, as catch-all)
|
2020-05-09 16:21:40 +02:00
|
|
|
if "wagtail.core" in settings.INSTALLED_APPS:
|
|
|
|
from wagtail.core import urls as wagtail_urls
|
2020-08-11 17:20:52 +02:00
|
|
|
from wagtail.admin import urls as wagtailadmin_urls
|
|
|
|
from wagtail.documents import urls as wagtaildocs_urls
|
2020-05-09 16:21:40 +02:00
|
|
|
|
2020-08-11 17:20:52 +02:00
|
|
|
urlpatterns += [
|
|
|
|
path("cms/", include(wagtailadmin_urls)),
|
|
|
|
path("documents/", include(wagtaildocs_urls)),
|
|
|
|
]
|
2020-05-09 16:21:40 +02:00
|
|
|
urlpatterns += i18n_patterns(
|
|
|
|
path("", include(wagtail_urls)), prefix_default_language=False
|
|
|
|
)
|