2019-02-11 22:52:48 +01:00
|
|
|
"""annuaire URL Configuration
|
|
|
|
|
|
|
|
The `urlpatterns` list routes URLs to views. For more information please see:
|
|
|
|
https://docs.djangoproject.com/en/dev/topics/http/urls/
|
|
|
|
Examples:
|
|
|
|
Function views
|
|
|
|
1. Add an import: from my_app import views
|
|
|
|
2. Add a URL to urlpatterns: path('', views.home, name='home')
|
|
|
|
Class-based views
|
|
|
|
1. Add an import: from other_app.views import Home
|
|
|
|
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
|
|
|
|
Including another URLconf
|
|
|
|
1. Import the include() function: from django.urls import include, path
|
|
|
|
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
|
|
|
|
"""
|
2019-04-08 20:07:38 +02:00
|
|
|
from django.conf import settings
|
2019-04-08 21:47:50 +02:00
|
|
|
from django.conf.urls.static import static
|
2023-01-30 21:23:52 +01:00
|
|
|
from django.contrib import admin
|
|
|
|
from django.urls import include, path
|
2019-02-11 22:52:48 +01:00
|
|
|
|
|
|
|
urlpatterns = [
|
2021-01-27 21:58:24 +01:00
|
|
|
path("", include("fiches.urls")),
|
|
|
|
path("admin/", admin.site.urls),
|
2021-02-05 22:02:23 +01:00
|
|
|
path("authens/", include("authens.urls")),
|
2021-01-27 21:58:24 +01:00
|
|
|
path("i18n/", include("django.conf.urls.i18n")),
|
2019-02-11 22:52:48 +01:00
|
|
|
]
|
2019-04-08 21:47:50 +02:00
|
|
|
|
2023-01-30 21:23:52 +01:00
|
|
|
if settings.DEBUG and "debug_toolbar" in settings.INSTALLED_APPS:
|
|
|
|
from debug_toolbar import urls as debug_urls
|
|
|
|
|
|
|
|
urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) + [
|
|
|
|
path("__debug__/", include(debug_urls))
|
|
|
|
]
|