summaryrefslogtreecommitdiff
path: root/gnowsys-ndf/gnowsys_ndf/ndf/urls
diff options
context:
space:
mode:
authorSaiEswarEpuri <saieswar36@gmail.com>2015-06-30 13:30:43 +0530
committerSaiEswarEpuri <saieswar36@gmail.com>2015-06-30 13:30:43 +0530
commitef5bc947e50af2b92d09df8d0780faee1df1b22b (patch)
tree1c8a511a4e7fab08b99d7a783f519d75fb3ed5aa /gnowsys-ndf/gnowsys_ndf/ndf/urls
parentfdb0a8ba045b8ecb78296a199d756371a385c938 (diff)
parent7bd32861825ec11a5da0a4f61dc800c4770b065d (diff)
downloadgnowsys-ef5bc947e50af2b92d09df8d0780faee1df1b22b.tar.gz
Merge branch 'mongokit' of https://github.com/gnowledge/gstudio into mongokit
Diffstat (limited to 'gnowsys-ndf/gnowsys_ndf/ndf/urls')
-rw-r--r--gnowsys-ndf/gnowsys_ndf/ndf/urls/batch.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/urls/batch.py b/gnowsys-ndf/gnowsys_ndf/ndf/urls/batch.py
index abb8a27..2d8dc6d 100644
--- a/gnowsys-ndf/gnowsys_ndf/ndf/urls/batch.py
+++ b/gnowsys-ndf/gnowsys_ndf/ndf/urls/batch.py
@@ -5,6 +5,11 @@ urlpatterns = patterns('gnowsys_ndf.ndf.views.batch',
url(r'^/edit/(?P<_id>[\w-]+)$', 'new_create_and_edit', name='edit'),
url(r'^/new_batch$', 'new_create_and_edit', name='new_batch'),
url(r'^/save_batch_stud$', 'save_students_for_batches', name='save_batch_stud'),
+ url(r'^/save_batch$', 'save_batch', name='save_batch'),
+ url(r'^/remove_stud_from_batch$', 'remove_stud_from_batch', name='remove_stud_from_batch'),
+ url(r'^/batch_detail$', 'batch_detail', name='batch_detail'),
url(r'^/detail/(?P<_id>[\w-]+)$', 'detail', name='detail'),
url(r'^/delete_batch/(?P<_id>[\w-]+)$', 'delete_batch', name='delete_batch'),
+ url(r'^/get_possible_batches/$', 'get_possible_batches', name='get_possible_batches'),
)
+