Modified templates a little for sandwich by user and sandwich by month (to have more...
[~kgodey/maayanwich.git] / urls.py
diff --git a/urls.py b/urls.py
index 98de04b..774e399 100644 (file)
--- a/urls.py
+++ b/urls.py
@@ -6,7 +6,8 @@ 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'),
+       url(r'^users/(?P<username>[-\w]+)/sandwiches/', views.sandwich_user, name='sandwich_user'),
+       url(r'^users/(?P<gusername>[-\w]+)/edit/', views.edit_user, name='edit_user'),
        url(r'^sandwich/(?P<slug>[-\w]+)/edit/', views.edit_sandwich, name='edit_sandwich'),
        url(r'^sandwich/(?P<slug>[-\w]+)/delete/', views.del_sandwich, name='del_sandwich'),
        url(r'^sandwich/(?P<slug>[-\w]+)/$', views.specific_sandwich, name='sandwich_by_slug'),