git.ithinksw.org
/
~kgodey
/
maayanwich.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Added month view and url.
[~kgodey/maayanwich.git]
/
urls.py
diff --git
a/urls.py
b/urls.py
index
f170527
..
a2a7ff7
100644
(file)
--- a/
urls.py
+++ b/
urls.py
@@
-4,6
+4,10
@@
from django.shortcuts import render_to_response
urlpatterns = patterns('',
(r'^addsandwich/$', views.add_sandwich),
urlpatterns = patterns('',
(r'^addsandwich/$', views.add_sandwich),
+ (r'^login/$', views.login_view),
(r'^addingredient/$', views.add_ingredient),
(r'^allsandwiches/$', views.all_sandwich),
(r'^addingredient/$', views.add_ingredient),
(r'^allsandwiches/$', views.all_sandwich),
+ (r'^newsandwiches/$', views.newsandwiches),
+ (r'^sandwich/(?P<slug>[-\w]+)/$', views.specific_sandwich),
+ (r'^sandwich/(?P<year>[-\w]+)/(?P<month>[-\w]+)/$', views.sandwich_month),
)
)