Started writing views and URLS - not done.
[~kgodey/maayanwich.git] / views.py
1 from django.http import HttpResponse
2 from forms import SandwichForm, IngredientForm, ArtistForm
3
4
5 def add_sandwich(request):
6         sform = SandwichForm()
7         
8
9 def add_artist(request):
10         sform = ArtistForm()
11
12
13 def add_ingredient(request):
14         sform = IngredientForm()