X-Git-Url: http://git.ithinksw.org/~kgodey/maayanwich.git/blobdiff_plain/21a5b5aafd25a996530e2575b32fca7a0ccac30d..da28c6fb169effe61e783f01b1f26d614d96f0e8:/urls.py diff --git a/urls.py b/urls.py index 9eefa92..2f8f17e 100644 --- a/urls.py +++ b/urls.py @@ -6,8 +6,9 @@ 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]+)/(?P[-\w]+)/$', views.sandwich_month, name='sandwich_by_month'), + url(r'^sandwich/(?P[-\w]+)/edit/', views.edit_sandwich, name='edit_sandwich'), url(r'^sandwich/(?P[-\w]+)/$', views.specific_sandwich, name='sandwich_by_slug'), + url(r'^sandwich/(?P[-\w]+)/(?P[-\w]+)/$', views.sandwich_month, name='sandwich_by_month'), url(r'^login/$', views.login_view, name='login'), url(r'^login2/$', views.login_view2, name='login2'), url(r'^logout/$', views.logout_view, name='logout'),