Commit 75d742b1 authored by Santino Campos's avatar Santino Campos

Add views for recipes model

parent e14f1aa1
...@@ -18,4 +18,19 @@ def ingredients_create(request): ...@@ -18,4 +18,19 @@ def ingredients_create(request):
return render(request, 'ingredients_create_form.html') return render(request, 'ingredients_create_form.html')
def recipes_list(request):
return render(request, 'recipes_list.html')
def recipes_detail(request):
return render(request, 'recipes_detail.html')
def recipes_update(request):
return render(request, 'recipes_update_form.html')
def recipes_create(request):
return render(request, 'recipes_create_form.html')
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment