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

ingredients list test passed

parent f283a687
#froyo/urls #froyo/urls
from django.conf.urls import url from django.conf.urls import url
from .views import HomeView, TaskCreateView from .views import HomeView, IngredientsList
urlpatterns = [ urlpatterns = [
url(r'^$', HomeView, name='home_page'), url(r'^$', HomeView, name='home_page'),
url(r'^tasks/new$', TaskCreateView, name='task_create'), url(r'^ingredients/list$', IngredientsList.as_view(), name='ingredients-list'),
] ]
\ 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