blob: d0488a6796d3f7f62125520db35f5acdd4b530de (
plain)
1
2
3
4
5
6
7
8
9
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'),
)
|