diff options
author | hardythe1 | 2014-12-02 16:05:42 +0530 |
---|---|---|
committer | hardythe1 | 2014-12-02 16:05:42 +0530 |
commit | 56138a036de7a9dee3cd3a786148752f443cb541 (patch) | |
tree | cde4c451e874ec2c5c94ac06d09b3705acfcf888 | |
parent | 09511cb6641b1d5be0d073cbdacd3b5bd0c291c0 (diff) | |
download | Python-TBC-Interface-56138a036de7a9dee3cd3a786148752f443cb541.tar.gz Python-TBC-Interface-56138a036de7a9dee3cd3a786148752f443cb541.tar.bz2 Python-TBC-Interface-56138a036de7a9dee3cd3a786148752f443cb541.zip |
added accidentally removed line of code
-rwxr-xr-x | tbc/views.py | 2 |
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) |