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
|
2020-02-12 23:21:24 +01:00
|
|
|
import django_cas_ng.views as cas_views
|
2019-02-11 22:52:48 +01:00
|
|
|
|
|
|
|
urlpatterns = [
|
|
|
|
path('admin/', admin.site.urls),
|
2020-02-08 11:02:39 +01:00
|
|
|
path('fiche/', include('fiches.urls')),
|
2020-09-16 15:38:38 +02:00
|
|
|
path('', HomeView.as_view(), name='home'),
|
|
|
|
path('birthday', BirthdayView.as_view(), name='birthday'),
|
2020-09-15 13:32:11 +02:00
|
|
|
path('accounts/login/', cas_views.LoginView.as_view(), name='cas_ng_login'),
|
2020-02-12 23:21:24 +01:00
|
|
|
path('logout', cas_views.LogoutView.as_view(), name='cas_ng_logout'),
|
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)
|