diff options
Diffstat (limited to 'website/urls.py')
-rw-r--r-- | website/urls.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/website/urls.py b/website/urls.py index d0488a6..fcc3156 100644 --- a/website/urls.py +++ b/website/urls.py @@ -3,8 +3,5 @@ from django.conf.urls import patterns, include, url urlpatterns = patterns('', url(r'^$', 'website.views.home', name='home'), - - # ajax urls - # url(r'^ajax/matching-books/$', 'tbc.views.ajax_matching_books', name='AjaxMatchingBooks'), - + url(r'^contact/', 'website.views.contact', name='contact'), ) |