Commit a65ae6c6 authored by thisLexic's avatar thisLexic

changed naming of ingredient list

parent f064b369
......@@ -2,5 +2,5 @@ from django.conf.urls import url
from . import views
urlpatterns = [
url(r'list/', views.list)
url(r'ingredients_list/', views.ingredients_list)
]
\ No newline at end of file
from django.shortcuts import render
def list(request):
def ingredients_list(request):
return render(request, 'ingredients_list.html')
\ 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