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 e69de29..08e08e5 100644 (file)
--- a/urls.py
+++ b/urls.py
@@ -0,0 +1,15 @@
+from django.conf.urls.defaults import *
+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/(?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),
+)