Login view works! Forms have been reshuffled (Django apparently comes with built...
[~kgodey/maayanwich.git] / forms.py
index 8685ea4..cd81af2 100644 (file)
--- a/forms.py
+++ b/forms.py
@@ -1,5 +1,7 @@
 from django.forms import ModelForm
-from models import Sandwich, Ingredient, Artist
+from models import Sandwich, Ingredient
+from django.contrib.auth.models import User
+from django import forms
 
 
 class SandwichForm(ModelForm):
@@ -13,11 +15,4 @@ class IngredientForm(ModelForm):
 
        class Meta:
                model = Ingredient
-               exclude = ('slug',)
-
-
-class ArtistForm(ModelForm):
-
-       class Meta:
-               model = Artist
                exclude = ('slug',)
\ No newline at end of file