X-Git-Url: http://git.ithinksw.org/~kgodey/maayanwich.git/blobdiff_plain/2cc7186840aa440de15f8926c3069c9fcc8cdf10..799a2ef9956edf518979879e0f29e4ac757ff791:/views.py diff --git a/views.py b/views.py index 60f00ef..66aa2bb 100644 --- a/views.py +++ b/views.py @@ -1 +1,14 @@ -# Create your views here. +from django.http import HttpResponse +from forms import SandwichForm, IngredientForm, ArtistForm + + +def add_sandwich(request): + sform = SandwichForm() + + +def add_artist(request): + sform = ArtistForm() + + +def add_ingredient(request): + sform = IngredientForm() \ No newline at end of file