Added an index instead of "all sandwiches", made custom titles for every page.
[~kgodey/maayanwich.git] / urls.py
diff --git a/urls.py b/urls.py
index 67695c8..98de04b 100644 (file)
--- a/urls.py
+++ b/urls.py
@@ -3,6 +3,7 @@ import views
 from django.shortcuts import render_to_response
 
 urlpatterns = patterns('',
+       url(r'^sandwich/index/$', views.index_sandwich, name='index_sandwich'),
        url(r'^sandwich/add/$', views.add_sandwich, name='add_sandwich'),
        url(r'^sandwich/all/$', views.all_sandwich, name='all_sandwiches'),
        url(r'^sandwich/(?P<gusername>[-\w]+)/edit/', views.edit_user, name='edit_user'),