Commit cb8f7183 authored by Lance Michael O. Co's avatar Lance Michael O. Co 😢

ingredient tests passed

parent 6f80f87e
#froyo/urls
from django.conf.urls import url
from .views import HomeView, IngredientsList, IngredientsDetail, IngredientsUpdate
from .views import HomeView, IngredientsList, IngredientsDetail, IngredientsUpdate, IngredientsCreate
urlpatterns = [
url(r'^$', HomeView, name='home_page'),
......@@ -10,4 +10,5 @@ urlpatterns = [
url(r'^ingredients/list$', IngredientsList.as_view(), name='ingredients-list'),
url(r'^ingredients/detail$', IngredientsDetail.as_view(), name='ingredients-detail'),
url(r'^ingredients/update$', IngredientsUpdate.as_view(), name='ingredients-update'),
url(r'^ingredients/create$', IngredientsCreate.as_view(), name='ingredients-create'),
]
\ No newline at end of file
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