Started writing views and URLS - not done.
[~kgodey/maayanwich.git] / views.py
index 60f00ef..66aa2bb 100644 (file)
--- 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