summaryrefslogtreecommitdiff
path: root/tbc
diff options
context:
space:
mode:
authorhardythe12014-03-12 18:11:18 +0530
committerhardythe12014-03-12 18:11:18 +0530
commit105de20e0b27990fe6cec612e42f2bd145bb0436 (patch)
tree2059630e44063089d1204dcae2adc6a68128b828 /tbc
parent13c23a55b2ac453d4a41405eaa5f1da491173e41 (diff)
downloadPython-TBC-Interface-105de20e0b27990fe6cec612e42f2bd145bb0436.tar.gz
Python-TBC-Interface-105de20e0b27990fe6cec612e42f2bd145bb0436.tar.bz2
Python-TBC-Interface-105de20e0b27990fe6cec612e42f2bd145bb0436.zip
adding url to get the notebook converted
Diffstat (limited to 'tbc')
-rw-r--r--tbc/urls.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tbc/urls.py b/tbc/urls.py
index c6eae0b..5fa1938 100644
--- a/tbc/urls.py
+++ b/tbc/urls.py
@@ -16,6 +16,7 @@ urlpatterns = patterns('',
url(r'^get-zip/(?P<book_id>\d+)$', 'tbc.views.GetZip', name='GetZip'),
url(r'^browse-books/$', 'tbc.views.BrowseBooks', name='BrowseBooks'),
url(r'^browse-books/(?P<category>.+)$', 'tbc.views.BrowseBooks', name='BrowseBooks'),
+ url(r'^convert-notebook/(?P<notebook_path>.+)$', 'tbc.views.ConvertNotebook', name='ConvertNotebook'),
url(r'^book-details/(?P<book_id>\d+)/$', 'tbc.views.BookDetails', name='BookDetails'),