X-Git-Url: http://git.ithinksw.org/~kgodey/maayanwich.git/blobdiff_plain/cf85775b60d096583ec64a257e8a6afe47e21cd2..da28c6fb169effe61e783f01b1f26d614d96f0e8:/forms.py diff --git a/forms.py b/forms.py index cd81af2..e471c2a 100644 --- a/forms.py +++ b/forms.py @@ -8,11 +8,21 @@ class SandwichForm(ModelForm): class Meta: model = Sandwich - exclude = ('slug',) + exclude = ('slug', 'user', 'ingredients') + fields = ('adjective', 'date_made', 'notes', 'picture') class IngredientForm(ModelForm): class Meta: model = Ingredient - exclude = ('slug',) \ No newline at end of file + exclude = ('slug',) + + +class NewUserForm(forms.Form): + first_name = forms.CharField() + last_name = forms.CharField() + email = forms.EmailField() + username = forms.CharField() + password = forms.CharField(widget=forms.PasswordInput) + confirm_password = forms.CharField(widget=forms.PasswordInput)