-
Notifications
You must be signed in to change notification settings - Fork 129
/
Copy pathforms.py
91 lines (63 loc) · 2.84 KB
/
forms.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
from django import forms
from .models import User
class UserAdminCreationForm(forms.ModelForm):
"""A form for creating new users. Includes all the required
fields, plus a repeated password."""
password1 = forms.CharField(label='Password', widget=forms.PasswordInput)
password2 = forms.CharField(label='Password confirmation', widget=forms.PasswordInput)
class Meta:
model = User
fields = ('email', 'desig')
def clean_password2(self):
# Check that the two password entries match
password1 = self.cleaned_data.get("password1")
password2 = self.cleaned_data.get("password2")
if password1 and password2 and password1 != password2:
raise forms.ValidationError("Passwords don't match")
return password2
def save(self, commit=True):
# Save the provided password in hashed format
user = super(UserAdminCreationForm, self).save(commit=False)
user.set_password(self.cleaned_data["password1"])
if commit:
user.save()
return user
# No need of any validations or checks in UserChange like in UserCreation.
# from django.contrib.auth.forms import ReadOnlyPasswordHashField
# class UserAdminChangeForm(forms.ModelForm):
# """A form for updating users. Includes all the fields on
# the user, but replaces the password field with admin's
# password hash display field.
# """
# password = ReadOnlyPasswordHashField()
# class Meta:
# model = User
# fields = ('email', 'password', 'desig', 'is_active', 'is_staff', 'is_superuser')
# def clean_password(self):
# # Regardless of what the user provides, return the initial value.
# # This is done here, rather than on the field, because the
# # field does not have access to the initial value
# return self.initial["password"]
# MAIN FORM ENDS HERE
# class LoginForm(forms.Form):
# email = forms.EmailField()
# password = forms.CharField(widget=forms.PasswordInput)
# class SignUpForm(forms.ModelForm):
# password = forms.CharField(widget=forms.PasswordInput)
# password2 = forms.CharField(label='Confirm password', widget=forms.PasswordInput)
# class Meta:
# model = User
# fields = ('email', 'desig')
# def clean_email(self):
# email = self.cleaned_data.get('email')
# qs = User.objects.filter(email=email)
# if qs.exists():
# raise forms.ValidationError("email is taken")
# return email
# def clean_password2(self):
# # Check that the two password entries match
# password1 = self.cleaned_data.get("password1")
# password2 = self.cleaned_data.get("password2")
# if password1 and password2 and password1 != password2:
# raise forms.ValidationError("Passwords don't match")
# return password2