forked from DGNum/gestioCOF
black 20
This commit is contained in:
parent
e868e6eb18
commit
1387da3b54
1 changed files with 23 additions and 5 deletions
|
@ -8,7 +8,9 @@ from gestioncof import csv_views, views
|
||||||
export_patterns = [
|
export_patterns = [
|
||||||
path("members", views.export_members, name="export.members"),
|
path("members", views.export_members, name="export.members"),
|
||||||
path(
|
path(
|
||||||
"mega/avecremarques", views.export_mega_remarksonly, name="export.mega.remarks",
|
"mega/avecremarques",
|
||||||
|
views.export_mega_remarksonly,
|
||||||
|
name="export.mega.remarks",
|
||||||
),
|
),
|
||||||
path(
|
path(
|
||||||
"mega/participants",
|
"mega/participants",
|
||||||
|
@ -52,8 +54,16 @@ registration_patterns = [
|
||||||
views.registration_form2,
|
views.registration_form2,
|
||||||
name="clipper-registration",
|
name="clipper-registration",
|
||||||
),
|
),
|
||||||
path("user/<username>", views.registration_form2, name="user-registration",),
|
path(
|
||||||
path("empty", views.registration_form2, name="empty-registration",),
|
"user/<username>",
|
||||||
|
views.registration_form2,
|
||||||
|
name="user-registration",
|
||||||
|
),
|
||||||
|
path(
|
||||||
|
"empty",
|
||||||
|
views.registration_form2,
|
||||||
|
name="empty-registration",
|
||||||
|
),
|
||||||
# Autocompletion
|
# Autocompletion
|
||||||
path(
|
path(
|
||||||
"autocomplete",
|
"autocomplete",
|
||||||
|
@ -88,7 +98,11 @@ urlpatterns = [
|
||||||
),
|
),
|
||||||
path("cas/login", django_cas_views.LoginView.as_view(), name="cas_login_view"),
|
path("cas/login", django_cas_views.LoginView.as_view(), name="cas_login_view"),
|
||||||
path("cas/logout", django_cas_views.LogoutView.as_view()),
|
path("cas/logout", django_cas_views.LogoutView.as_view()),
|
||||||
path("outsider/login", views.LoginExtView.as_view(), name="ext_login_view",),
|
path(
|
||||||
|
"outsider/login",
|
||||||
|
views.LoginExtView.as_view(),
|
||||||
|
name="ext_login_view",
|
||||||
|
),
|
||||||
path(
|
path(
|
||||||
"outsider/logout",
|
"outsider/logout",
|
||||||
django_auth_views.LogoutView.as_view(),
|
django_auth_views.LogoutView.as_view(),
|
||||||
|
@ -118,7 +132,11 @@ urlpatterns = [
|
||||||
path("utile_bda", views.utile_bda, name="utile_bda"),
|
path("utile_bda", views.utile_bda, name="utile_bda"),
|
||||||
path("utile_bda/bda_diff", views.liste_bdadiff, name="ml_diffbda"),
|
path("utile_bda/bda_diff", views.liste_bdadiff, name="ml_diffbda"),
|
||||||
path("utile_cof/diff_cof", views.liste_diffcof, name="ml_diffcof"),
|
path("utile_cof/diff_cof", views.liste_diffcof, name="ml_diffcof"),
|
||||||
path("utile_bda/bda_revente", views.liste_bdarevente, name="ml_bda_revente",),
|
path(
|
||||||
|
"utile_bda/bda_revente",
|
||||||
|
views.liste_bdarevente,
|
||||||
|
name="ml_bda_revente",
|
||||||
|
),
|
||||||
# -----
|
# -----
|
||||||
# Inscription d'un nouveau membre
|
# Inscription d'un nouveau membre
|
||||||
# -----
|
# -----
|
||||||
|
|
Loading…
Reference in a new issue