X-Git-Url: http://git.ithinksw.org/~kgodey/maayanwich.git/blobdiff_plain/574ee1035dc6ba637a23a0e854b3dcc9e022c755..e2869e2dfb4fdb7f01f27a03211bec2b198e4a4a:/forms.py diff --git a/forms.py b/forms.py index c5a5ae6..e471c2a 100644 --- a/forms.py +++ b/forms.py @@ -1,16 +1,28 @@ from django.forms import ModelForm from models import Sandwich, Ingredient +from django.contrib.auth.models import User +from django import forms 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)