a56e4ec13b0389d9ece41e55913318d6e28bd1fd
[~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         aform = ArtistForm()
11
12
13 def add_ingredient(request):
14         iform = IngredientForm()