summaryrefslogtreecommitdiff
path: root/tbc
diff options
context:
space:
mode:
authorhardythe12014-12-02 16:05:42 +0530
committerhardythe12014-12-02 16:05:42 +0530
commit56138a036de7a9dee3cd3a786148752f443cb541 (patch)
treecde4c451e874ec2c5c94ac06d09b3705acfcf888 /tbc
parent09511cb6641b1d5be0d073cbdacd3b5bd0c291c0 (diff)
downloadPython-TBC-Interface-56138a036de7a9dee3cd3a786148752f443cb541.tar.gz
Python-TBC-Interface-56138a036de7a9dee3cd3a786148752f443cb541.tar.bz2
Python-TBC-Interface-56138a036de7a9dee3cd3a786148752f443cb541.zip
added accidentally removed line of code
Diffstat (limited to 'tbc')
-rwxr-xr-xtbc/views.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tbc/views.py b/tbc/views.py
index 444e848..5b43585 100755
--- a/tbc/views.py
+++ b/tbc/views.py
@@ -1212,6 +1212,7 @@ def RedirectToIpynb(request, notebook_path=None):
# ajax views
@csrf_exempt
def ajax_matching_books(request):
+ print "here"
titles = request.POST["titles"]
titles = json.loads(titles)
matches = []
@@ -1229,3 +1230,4 @@ def ajax_matching_books(request):
'matches': matches,
'flag': flag
}
+ return render_to_response('tbc/ajax-matching-books.html', context)