# -*- 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 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)