Added a better slugify function, monthly archives work, notes are optional now.
[~kgodey/maayanwich.git] / urls.py
diff --git a/urls.py b/urls.py
index f170527..08e08e5 100644 (file)
--- a/urls.py
+++ b/urls.py
@@ -3,7 +3,13 @@ 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'^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/(?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),
 )