URLs all read from urls.py file now, no hardcoded URLs
[~kgodey/maayanwich.git] / urls.py
diff --git a/urls.py b/urls.py
index 08e08e5..8f48e0f 100644 (file)
--- a/urls.py
+++ b/urls.py
@@ -3,13 +3,13 @@ import views
 from django.shortcuts import render_to_response
 
 urlpatterns = patterns('',
-       (r'^sandwich/add/$', views.add_sandwich),
-       (r'^sandwich/addingredient/$', views.add_ingredient),
-       (r'^sandwich/all/$', views.all_sandwich),
-       (r'^sandwich/(?P<year>[-\w]+)/(?P<month>[-\w]+)/$', views.sandwich_month),
+       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<year>[-\w]+)/(?P<month>[-\w]+)/$', views.sandwich_month, name='sandwich_by_month'),
        url(r'^sandwich/(?P<slug>[-\w]+)/$', views.specific_sandwich, name='sandwich_by_slug'),
-       (r'^login/$', views.login_view),
-       (r'^logout/$', views.logout_view),
-       (r'^signup/$', views.create_user),
-       (r'', views.current_home),
+       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'),
 )