48 lines
2 KiB
Python
48 lines
2 KiB
Python
"""Ernestophone URL Configuration
|
|
|
|
The `urlpatterns` list routes URLs to views. For more information please see:
|
|
https://docs.djangoproject.com/en/2.0/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'))
|
|
"""
|
|
from django.contrib import admin
|
|
from django.urls import path, include
|
|
from gestion import views as gestion_views
|
|
from django.contrib.auth import views as auth_views
|
|
import django.contrib.auth.urls as urls
|
|
from django.conf.urls.static import static
|
|
from django.conf import settings
|
|
from django.conf.urls.i18n import i18n_patterns
|
|
|
|
|
|
urlpatterns = []
|
|
urlpatterns += i18n_patterns(
|
|
path('', gestion_views.home, name="home"),
|
|
path("registration", gestion_views.inscription_membre, name="registration"),
|
|
path("change", gestion_views.change_membre, name="change_membre"),
|
|
path("password", gestion_views.change_password, name="change_password"),
|
|
path("thanks", gestion_views.thanks, name="thanks"),
|
|
path("changename", gestion_views.changename, name="change-doodle-name"),
|
|
path("logout", auth_views.LogoutView.as_view(next_page="home"), name="logout"),
|
|
path(
|
|
"login",
|
|
auth_views.LoginView.as_view(template_name="gestion/login.html"),
|
|
name="login"
|
|
),
|
|
path('agenda/', include('calendrier.urls',namespace='calendrier')),
|
|
path('partitions/', include('partitions.urls')),
|
|
path('pads/', include('pads.urls')),
|
|
path('admin/', admin.site.urls,),
|
|
path('trombonoscope/',include('trombonoscope.urls')),
|
|
path("actu/",include('actu.urls')),
|
|
path('avatar/', include('avatar.urls')),
|
|
prefix_default_language=False )
|
|
urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
|