X-Git-Url: http://git.ithinksw.org/~kgodey/maayanwich.git/blobdiff_plain/0ee52e2ec5e267a0c73092202902707176f96e2e..574ee1035dc6ba637a23a0e854b3dcc9e022c755:/forms.py?ds=sidebyside diff --git a/forms.py b/forms.py index 8685ea4..c5a5ae6 100644 --- a/forms.py +++ b/forms.py @@ -1,5 +1,5 @@ from django.forms import ModelForm -from models import Sandwich, Ingredient, Artist +from models import Sandwich, Ingredient class SandwichForm(ModelForm): @@ -13,11 +13,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