Added a view for all sandwiches, and configured URLS for it.
[~kgodey/maayanwich.git] / urls.py
diff --git a/urls.py b/urls.py
index 66c17b1..f170527 100644 (file)
--- a/urls.py
+++ b/urls.py
@@ -5,4 +5,5 @@ from django.shortcuts import render_to_response
 urlpatterns = patterns('',
        (r'^addsandwich/$', views.add_sandwich),
        (r'^addingredient/$', views.add_ingredient),
+       (r'^allsandwiches/$', views.all_sandwich),
 )