Edit sandwich method added - not completely working yet. Adds a new sandwich instead...
[~kgodey/maayanwich.git] / forms.py
index cd81af2..e471c2a 100644 (file)
--- 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)