annuaire-eleves/annuaire/urls.py

34 lines
1.3 KiB
Python
Raw Normal View History

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-02-08 14:10:14 +01:00
from fiches.views import home, birthday
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-02-08 14:10:14 +01:00
path('', home, name='home'),
2020-02-12 23:21:24 +01:00
path('birthday', birthday, name='birthday'),
path('login', cas_views.LoginView.as_view(), name='cas_ng_login'),
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)