Commit bac57524 authored by Santino Campos's avatar Santino Campos

Add views for orders model

parent 75d742b1
......@@ -34,3 +34,17 @@ def recipes_create(request):
return render(request, 'recipes_create_form.html')
def orders_list(request):
return render(request, 'orders_list.html')
def orders_detail(request):
return render(request, 'orders_detail.html')
def orders_update(request):
return render(request, 'orders_update_form.html')
def orders_create(request):
return render(request, 'orders_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