116 lines
3.1 KiB
Python
116 lines
3.1 KiB
Python
# -*- mode: python; coding: utf-8 -*-
|
|
# Copyright (C) 2017-2019 by BDE ENS Paris-Saclay
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
from django import forms
|
|
from django.contrib.auth.forms import ReadOnlyPasswordHashField
|
|
from django.core.validators import MinLengthValidator
|
|
from django.forms import ModelForm, Form
|
|
|
|
from .models import Adhesion, Clef, ListRight, Right, User
|
|
|
|
|
|
class PassForm(forms.Form):
|
|
passwd1 = forms.CharField(label=u'Nouveau mot de passe', max_length=255, validators=[MinLengthValidator(8)],
|
|
widget=forms.PasswordInput)
|
|
passwd2 = forms.CharField(label=u'Saisir à nouveau le mot de passe', max_length=255,
|
|
validators=[MinLengthValidator(8)], widget=forms.PasswordInput)
|
|
|
|
|
|
class BaseInfoForm(ModelForm):
|
|
class Meta:
|
|
model = User
|
|
fields = [
|
|
'first_name',
|
|
'username',
|
|
'last_name',
|
|
'email',
|
|
'telephone',
|
|
'address',
|
|
]
|
|
|
|
|
|
class InfoForm(BaseInfoForm):
|
|
class Meta(BaseInfoForm.Meta):
|
|
fields = [
|
|
'first_name',
|
|
'username',
|
|
'last_name',
|
|
'email',
|
|
'telephone',
|
|
'address',
|
|
'maxemprunt',
|
|
]
|
|
|
|
|
|
class PasswordForm(ModelForm):
|
|
class Meta:
|
|
model = User
|
|
fields = ['password']
|
|
|
|
|
|
class StateForm(ModelForm):
|
|
class Meta:
|
|
model = User
|
|
fields = ['is_active']
|
|
|
|
|
|
class ClefForm(ModelForm):
|
|
class Meta:
|
|
model = Clef
|
|
fields = '__all__'
|
|
|
|
|
|
class BaseClefForm(ClefForm):
|
|
class Meta(ClefForm.Meta):
|
|
fields = [
|
|
'commentaire',
|
|
]
|
|
|
|
|
|
class AdhesionForm(ModelForm):
|
|
adherent = forms.ModelMultipleChoiceField(User.objects.all(), widget=forms.CheckboxSelectMultiple, required=False)
|
|
|
|
class Meta:
|
|
model = Adhesion
|
|
fields = '__all__'
|
|
|
|
|
|
class RightForm(ModelForm):
|
|
def __init__(self, *args, **kwargs):
|
|
super(RightForm, self).__init__(*args, **kwargs)
|
|
self.fields['right'].label = 'Droit'
|
|
self.fields['right'].empty_label = "Choisir un nouveau droit"
|
|
|
|
class Meta:
|
|
model = Right
|
|
fields = ['right']
|
|
|
|
|
|
class DelRightForm(Form):
|
|
rights = forms.ModelMultipleChoiceField(queryset=Right.objects.all(), widget=forms.CheckboxSelectMultiple)
|
|
|
|
def __init__(self, right, *args, **kwargs):
|
|
super(DelRightForm, self).__init__(*args, **kwargs)
|
|
self.fields['rights'].queryset = Right.objects.filter(right=right)
|
|
|
|
|
|
class ListRightForm(ModelForm):
|
|
class Meta:
|
|
model = ListRight
|
|
fields = ['listright', 'details']
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
super(ListRightForm, self).__init__(*args, **kwargs)
|
|
self.fields['listright'].label = 'Nom du droit/groupe'
|
|
|
|
|
|
class NewListRightForm(ListRightForm):
|
|
class Meta(ListRightForm.Meta):
|
|
fields = '__all__'
|
|
|
|
|
|
class DelListRightForm(Form):
|
|
listrights = forms.ModelMultipleChoiceField(queryset=ListRight.objects.all(), label="Droits actuels",
|
|
widget=forms.CheckboxSelectMultiple)
|