- 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'),