diff options
author | hardythe1 | 2015-06-10 15:11:26 +0530 |
---|---|---|
committer | hardythe1 | 2015-06-10 15:11:26 +0530 |
commit | 468146479ca9c8fa0c1dffdb9a63d822dd3a8d33 (patch) | |
tree | 4b7aaf64a334e11db6a9f1446cfe30a66a4d3b31 /website/urls.py | |
download | SciPy2015-468146479ca9c8fa0c1dffdb9a63d822dd3a8d33.tar.gz SciPy2015-468146479ca9c8fa0c1dffdb9a63d822dd3a8d33.tar.bz2 SciPy2015-468146479ca9c8fa0c1dffdb9a63d822dd3a8d33.zip |
Add Files
Diffstat (limited to 'website/urls.py')
-rw-r--r-- | website/urls.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/website/urls.py b/website/urls.py new file mode 100644 index 0000000..d0488a6 --- /dev/null +++ b/website/urls.py @@ -0,0 +1,10 @@ +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'), + +) |