X-Git-Url: http://git.ithinksw.org/~kgodey/maayanwich.git/blobdiff_plain/2fa1060c2b4ff808834251a9e36be456b6af896f..6257e70f7b73d39922d5160c648b418c4ac180a2:/urls.py diff --git a/urls.py b/urls.py index a2025b8..8f6f28b 100644 --- a/urls.py +++ b/urls.py @@ -3,9 +3,14 @@ import views from django.shortcuts import render_to_response urlpatterns = patterns('', - (r'^addsandwich/$', views.add_sandwich), - (r'^addingredient/$', views.add_ingredient), - (r'^allsandwiches/$', views.all_sandwich), - (r'^newsandwiches/$', views.newsandwiches), - (r'^sandwich/(?P[-\w]+)/$', views.specific_sandwich), + 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]+)/$', views.specific_sandwich, name='sandwich_by_slug'), + url(r'^login/$', views.login_view, name='login'), + url(r'^logout/$', views.logout_view, name='logout'), + url(r'^signup/$', views.create_user, name='signup'), + url(r'', views.current_home, name='index'), + (r'^comments/', include('django.contrib.comments.urls')), )