mirror of https://gitlab.crans.org/bde/nk20
Merge branch 'non-BDE-members' into 'main'
Draft: Allow non-BDE members to use the note See merge request bde/nk20!268
This commit is contained in:
commit
b2f95a94c7
|
@ -3751,6 +3751,21 @@
|
|||
"permanent": false,
|
||||
"description": "Modifier bouffe"
|
||||
}
|
||||
}, {
|
||||
"model": "permission.permission",
|
||||
"pk": 239,
|
||||
"fields": {
|
||||
"model": [
|
||||
"note",
|
||||
"alias"
|
||||
],
|
||||
"query": "[\"AND\", [\"OR\", {\"note__noteuser__user__memberships__club\": \"club\", \"note__noteuser__user__memberships__date_start__lte\": [\"today\"], \"note__noteuser__user__memberships__date_end__gte\": [\"today\"]}, {\"note__noteclub__isnull\": false}], {\"note__is_active\": true}]",
|
||||
"type": "view",
|
||||
"mask": 1,
|
||||
"field": "",
|
||||
"permanent": false,
|
||||
"description": "Voir les alias des notes des clubs et des adhérent⋅es du club BDE"
|
||||
}
|
||||
},
|
||||
{
|
||||
"model": "permission.role",
|
||||
|
@ -3851,6 +3866,19 @@
|
|||
"for_club": null,
|
||||
"name": "Membre de club",
|
||||
"permissions": [
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
4,
|
||||
5,
|
||||
7,
|
||||
8,
|
||||
9,
|
||||
10,
|
||||
11,
|
||||
12,
|
||||
13,
|
||||
14,
|
||||
22
|
||||
]
|
||||
}
|
||||
|
@ -3913,7 +3941,8 @@
|
|||
142,
|
||||
182,
|
||||
184,
|
||||
185
|
||||
185,
|
||||
239
|
||||
]
|
||||
}
|
||||
},
|
||||
|
|
|
@ -300,10 +300,13 @@ class FutureUserDetailView(ProtectQuerysetMixin, LoginRequiredMixin, FormMixin,
|
|||
# join_bde = True
|
||||
# join_kfet = True
|
||||
|
||||
if not join_bde:
|
||||
if not (join_bde or any(b for _, b in join_clubs)):
|
||||
# This software belongs to the BDE.
|
||||
form.add_error('join_bde', _("You must join the BDE."))
|
||||
form.add_error('join_bde', _("You must join a club."))
|
||||
return super().form_invalid(form)
|
||||
|
||||
if join_kfet and not join_bde:
|
||||
forl.add_error('join_bde', _("You must also join the parent club BDE."))
|
||||
|
||||
# Calculate required registration fee
|
||||
fee = 0
|
||||
|
|
Loading…
Reference in New Issue