X-Git-Url: http://git.ithinksw.org/~kgodey/maayanwich.git/blobdiff_plain/12de092f5614a8b7b1cb7ad7ac7470bdf75d4b8d..2a2e81bae73647b9ea060e30a092d2679b6bff7e:/urls.py diff --git a/urls.py b/urls.py index fa3969c..a90d4fc 100644 --- a/urls.py +++ b/urls.py @@ -6,6 +6,7 @@ urlpatterns = patterns('', url(r'^sandwich/add/$', views.add_sandwich, name='add_sandwich'), url(r'^sandwich/addingredient/$', views.add_ingredient, name='add_ingredient'), url(r'^sandwich/all/$', views.all_sandwich, name='all_sandwiches'), + url(r'^sandwich/(?P[-\w]+)/edit/', views.edit_user, name='edit_user'), url(r'^sandwich/(?P[-\w]+)/edit/', views.edit_sandwich, name='edit_sandwich'), url(r'^sandwich/(?P[-\w]+)/delete/', views.del_sandwich, name='del_sandwich'), url(r'^sandwich/(?P[-\w]+)/$', views.specific_sandwich, name='sandwich_by_slug'),