Added the "create new user" view.
[~kgodey/maayanwich.git] / urls.py
1 from django.conf.urls.defaults import *
2 import views
3 from django.shortcuts import render_to_response
4
5 urlpatterns = patterns('',
6         (r'^addsandwich/$', views.add_sandwich),
7         (r'^login/$', views.login_view),
8         (r'^newuser/$', views.create_user),
9         (r'^addingredient/$', views.add_ingredient),
10         (r'^allsandwiches/$', views.all_sandwich),
11         (r'^newsandwiches/$', views.newsandwiches),
12         (r'^sandwich/(?P<slug>[-\w]+)/$', views.specific_sandwich),
13         (r'^sandwich/(?P<year>[-\w]+)/(?P<month>[-\w]+)/$', views.sandwich_month),
14 )