summaryrefslogtreecommitdiff
path: root/gnowsys-ndf/gnowsys_ndf/ndf/urls
diff options
context:
space:
mode:
authormakfire <mukeshpandey15@hotmail.com>2015-06-29 16:18:41 +0530
committermakfire <mukeshpandey15@hotmail.com>2015-06-29 16:18:41 +0530
commit7bd32861825ec11a5da0a4f61dc800c4770b065d (patch)
tree3b903216c77537912fc9da6dce20dcd13336b80d /gnowsys-ndf/gnowsys_ndf/ndf/urls
parent36b90361de0ede9717edd02139834a6f0416821a (diff)
parentf7984542ca1d979a9380988fa9ccf53ec233cb92 (diff)
downloadgnowsys-7bd32861825ec11a5da0a4f61dc800c4770b065d.tar.gz
Merge pull request #1188 from katkamrachana/mongokit
Implementation of Batches for MIS
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'),
)
+