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-02-11 22:52:48 +01:00
|
|
|
from django.contrib import admin
|
2019-03-25 22:30:25 +01:00
|
|
|
from django.urls import path, include
|
2019-04-08 21:47:50 +02:00
|
|
|
from django.conf.urls.static import static
|
2020-09-16 15:38:38 +02:00
|
|
|
from fiches.views import BirthdayView, HomeView
|
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
|
|
|
|
|
|
|
if settings.DEBUG:
|
2020-01-27 19:58:25 +01:00
|
|
|
urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
|