Comments fully integrated.
[~kgodey/maayanwich.git] / urls.py
diff --git a/urls.py b/urls.py
index 8f6f28b..9eefa92 100644 (file)
--- a/urls.py
+++ b/urls.py
@@ -9,8 +9,11 @@ urlpatterns = patterns('',
        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'),
        url(r'^login/$', views.login_view, name='login'),
+       url(r'^login2/$', views.login_view2, name='login2'),
        url(r'^logout/$', views.logout_view, name='logout'),
        url(r'^signup/$', views.create_user, name='signup'),
-       url(r'', views.current_home, name='index'),
+       url(r'^ajaxfun', views.ajaxfun, name='ajaxfun'),
+       url(r'^comments/posted/$', views.comment_posted, name='comment_posted'),
        (r'^comments/', include('django.contrib.comments.urls')),
+       url(r'^home/$', views.current_home, name='index'),
 )