X-Git-Url: http://git.ithinksw.org/~kgodey/maayanwich.git/blobdiff_plain/2d13c64cccabf18b2ee17dac2f0c54280edd9327..HEAD:/forms.py diff --git a/forms.py b/forms.py index 380f6a4..aa86e0d 100644 --- a/forms.py +++ b/forms.py @@ -8,7 +8,8 @@ class SandwichForm(ModelForm): class Meta: model = Sandwich - exclude = ('slug',) + exclude = ('slug', 'user', 'ingredients') + fields = ('adjective', 'date_made', 'notes', 'picture') class IngredientForm(ModelForm): @@ -24,4 +25,11 @@ class NewUserForm(forms.Form): email = forms.EmailField() username = forms.CharField() password = forms.CharField(widget=forms.PasswordInput) - confirm_password = forms.CharField(widget=forms.PasswordInput) + confirmpassword = forms.CharField(label=("Confirm password"), widget=forms.PasswordInput) + + def clean_confirmpassword(self): + password = self.cleaned_data.get("password", "") + cpassword = self.cleaned_data["confirmpassword"] + if password != cpassword: + raise forms.ValidationError(("The two password fields didn't match.")) + return cpassword