Commit 9d197116 authored by Santino Campos's avatar Santino Campos

Add url resolution for all views for recipes model

parent 7ae02902
......@@ -20,4 +20,9 @@ urlpatterns = [
url(r'ingredients/list', ingredients_list, name='ingredients_list'),
url(r'ingredients/create', ingredients_create, name='ingredients_create'),
url(r'ingredients/update', ingredients_update, name='ingredients_update'),
url(r'recipes/detail', recipes_detail, name='recipes_detail'),
url(r'recipes/list', recipes_list, name='recipes_detail'),
url(r'recipes/create', recipes_create, name='recipes_list'),
url(r'recipes/update', recipes_update, name='recipes_create'),
]
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