-
Notifications
You must be signed in to change notification settings - Fork 4
/
dashboard.html
3053 lines (2981 loc) · 115 KB
/
dashboard.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE HTML>
<!-- manifest="/media/coco/cocooffline.appcache" -->
<HTML XML:LANG="en-us" XMLNS="http://www.w3.org/1999/xhtml" LANG="en-us" MANIFEST="/media/coco/cocooffline.appcache">
<HEAD>
<META HTTP-EQUIV="content-type" CONTENT="text/html; charset=UTF-8">
<TITLE>Dashboard</TITLE>
<LINK REL="stylesheet" HREF="/media/coco/app/scripts/libs/datatablejs_media/css/demo_table.css">
<LINK REL="stylesheet" HREF="/media/coco/app/scripts/libs/tabletools_media/css/TableTools.css">
<LINK REL="stylesheet" HREF="/media/coco/app/scripts/libs/bootstrap/css/bootstrap.css">
<LINK REL="stylesheet" HREF="/media/coco/app/scripts/libs/chosen/chosen.css">
<LINK REL="stylesheet" HREF="/media/coco/app/scripts/libs/bootstrap/css/bootstrap-responsive.css">
<LINK REL="stylesheet" HREF="/media/coco/app/styles/css/coco.css">
<LINK REL="stylesheet" HREF="/media/coco/app/styles/css/datepicker.css">
<LINK REL="stylesheet" HREF="/media/coco/app/styles/css/bootstrap-timepicker.css">
<LINK REL="stylesheet" HREF="/media/coco/app/styles/css/bootstrap-timepicker.css">
<LINK REL="stylesheet" HREF="/media/coco/app/styles/css/nrlm.css">
<SCRIPT DATA-MAIN="/media/coco/dist/scripts/main" SRC="/media/coco/app/scripts/libs/require.js"></SCRIPT>
<script type="text/javascript">
require.config({
paths: {
"configs": "/media/configs"
},
});
</script>
<META NAME="robots" CONTENT="NONE,NOARCHIVE">
<META NAME="viewport" CONTENT="width=device-width, initial-scale=1.0">
<!--Core Framework templates end here -->
<!--Page layout, full download, incremental download, background inc download, upload, notifications, status, dashboard, form page, list page, login, select-options template, -->
<SCRIPT TYPE="text/template" ID="header">
<div class="page-header" style="margin-bottom:0px;">
<h1 ><a href="#">COCO</a></h1>
<ul class="breadcrumb">
<%=breadcrumb%>
</ul>
</div>
</SCRIPT>
<SCRIPT TYPE="text/template" ID="error_notifcation_template" >
<div class="alert alert-error">
<a class="close" data-dismiss="alert">×</a>
<strong>Error! </strong><%= msg%>
</div>
</SCRIPT>
<SCRIPT TYPE="text/template" ID="success_notifcation_template" >
<div class="alert alert-success">
<a class="close" data-dismiss="alert">×</a>
<strong>Success! </strong><%= msg%>
</div>
</SCRIPT>
<SCRIPT TYPE="text/template" ID="info_notifcation_template" >
<div class="alert alert-info">
<a class="close" data-dismiss="alert">×</a>
<strong>Info! </strong><%= msg%>
</div>
</SCRIPT>
<SCRIPT TYPE="text/template" ID="upload_template">
<div id="upload_modal" class="modal hide fade" >
<div class="modal-header">
<h3>Uploading</h3>
</div>
<div class="modal-body">
Data items to be uploaded = <span id="num_upload"> </span>
<br>
<div class="progress progress-info progress-striped">
<div class="bar" id = "pbar" style="width: 0%"></div>
</div>
<table class="table">
<tr>
<td id="upl_action"> </td>
<td id="upl_status"> </td>
</tr>
</table>
<p id= "error_msg"> </p>
<div id= "upload_form">
</div>
</div>
<div class="modal-footer">
<button id="stop_upload" type="button" class="btn">Stop It!</button>
</div>
</div>
</SCRIPT>
<SCRIPT TYPE="text/template" ID="incremental_download_template">
<div id="incremental_download_modal" class="modal hide fade" >
<div class="modal-header">
<h3>Downloading</h3>
</div>
<div class="modal-body">
<div class="progress progress-info progress-striped">
<div class="bar" id = "inc_pbar" style="width: 0%"></div>
</div>
<table class="table">
<tr>
<td id="inc_action"> </td>
<td id="inc_status"> </td>
</tr>
</table>
</div>
<div class="modal-footer">
<button id="stop_inc_download" type="button" class="btn">Stop It!</button>
</div>
</div>
</SCRIPT>
<SCRIPT TYPE="text/template" ID="incremental_download_background_template">
<div class="row control-group">
<div id="incremental_download_back" style="position:fixed;bottom:0px;z-index:10000" class="span2">
Downloading...
<div>
<div class="progress progress-info progress-striped">
<div class="bar" id = "inc_pbar" style="width: 0%"></div>
</div>
</div>
</div>
</div>
</SCRIPT>
<SCRIPT TYPE="text/template" ID="download_template">
<div id="full_download_modal" class="modal hide fade" ><div class="modal-header">
<h3>Download</h3>
</div>
<div class="modal-body">
<p >Please wait...</p>
<div class="progress progress-info progress-striped">
<div class="bar" id = "pbar" style="width: 0%"></div>
</div>
<div id="d_status">
<table class="table" style="width:100%">
<%$.each(all_configs, function(key,val) {
if(key!="misc"){
var keyCap = key.charAt(0).toUpperCase() + key.slice(1);
%>
<tr id="<%=key%>">
<td><%= keyCap %>s</td>
<td class="status_text">In Progress</td>
<td class="status_numbers"></td>
</tr>
<%}});%>
</table>
</div>
</div>
<div class="modal-footer">
<button id = "stop_full_download" type="button" class="btn btn-danger" disabled>Pause download</button>
</div>
</div>
</SCRIPT>
<SCRIPT TYPE="text/template" ID="dashboard_item_template">
<li class="list_items"><a href="#<%= name%>"><%= title%></a></li>
</SCRIPT>
<SCRIPT TYPE="text/template" ID="dashboard">
<div id="coco_sidebar" class="coco_sidebar affix">
<table border = '0'>
<tr>
<td style="vertical-align:top;"><div>
<img id= "online" src="/media/coco/app/images/online.png" title= "You are online"/>
<img id= "offline" src="/media/coco/app/images/offline.png" title= "You are offline"/>
</div></td>
<td>
<div id="coco_userinfo">
<%if(typeof(username)!=undefined){%>
Hi <%=username%>! <br><a id="logout" style="cursor:pointer">Log out</a>
<%}%>
</div>
</td>
</tr>
</table>
<div id="coco_brand">
<a href="#">COCO</a>
</div>
<div id="coco_sync" class="row control-group">
<button class="btn pull-left" id= "sync">Sync
<span class="badge" id="upload_num"><%=upload_entries%></span>
</button>
</div>
<p id="helptext">
Please download the database<br>
by clicking on the sync button
</p>
<div id="coco_nav" class="pull-left">
<ul id = "dashboard_items" class="nav nav-list" title= "Click to view, search or edit data">
</ul>
</div>
<div id="coco_nav_add" class="pull-right">
<ul id = "dashboard_items_add" class="nav nav-list" title= "Click to add data">
</ul>
</div>
<div id="faq">
Need Help? Check out the <a href=>FAQ</a>
</div>
</div>
</SCRIPT>
<SCRIPT TYPE="text/template" ID="page_layout">
<div id = "side_panel" class="span2 well affix" style = "height:100%; margin-left:0px;"></div>
<div id = "content" class="span10" ></div>
</SCRIPT>
<SCRIPT TYPE="text/template" ID="status">
<div id="modal"></div>
<div class="page-header">
<h1 style = "color:#0088cc;"> Welcome to COCO!
<br>
<small>COCO helps you to seamlessly enter data in conditions of intermittent connectivity.</small>
</br>
</h1>
</div>
<div class="media">
<a class="pull-left">
<img class="media-object" src="/media/coco/app/images/add.png" style = "width:70px;">
</a>
<div class="media-body">
<h5 class="media-heading">Add data</h5>
To add some data, click on (+) sign next to the type of data that you want to add.
</div>
</div>
<div class="media">
<a class="pull-left">
<img class="media-object" src="/media/coco/app/images/table.png" style = "width:70px;">
</a>
<div class="media-body">
<h5 class="media-heading">View Data</h5>
To view, sort and search through your data, click on the data link in the sidebar.
</div>
</div>
<div class="media">
<a class="pull-left">
<img class="media-object" src="/media/coco/app/images/sync.png" style = "width:70px;">
</a>
<div class="media-body">
<h5 class="media-heading"> Sync data</h5>
To sync data with the server, click on the sync button. While syncing, if some data is rejected by the server,
you will get the opportunity to correct the data, or in case of duplicate entries, to discard it.
The number in the button shows how many entries are yet to be uploaded.
Clicking on the sync button will also download the database if it is not completely downloaded.
</div>
</div>
<div class="media">
<a class="pull-left">
<img class="media-object" src="/media/coco/app/images/feedback.png" style = "width:70px;">
</a>
<div class="media-body">
<h5 class="media-heading"> We value your feedback</h5>
Do share your feedback by mailing us at <a href="mailto:[email protected]">[email protected]</a>
</div>
</div>
<div style = "color:#999999; margin-top:25px;">
<b>Database last deleted and downloaded at </b><%=full_d_timestamp%>
</div><br>
<div style = "color:#999999; margin-top:-15px;">
<b>Database last synced at </b><%=inc_d_timestamp%>
</div><br>
<div style = "color:#999999; margin-top:-15px;">
<b>Current database version</b> <%=db_version%>
</div><br>
<div class="row pull-left" style="margin-left:0px; margin-right:10px; margin-top:-15px;color:#999999;">
<b>Entries to upload </b>
</div>
<div class="accordion" style="margin-left:0px; margin-right:0px; margin-top:-8px;">
<div class="accordion-heading">
<a class="accordion-toggle" data-toggle="collapse" data-parent="#accordion2" href="#collapseOne" style = "margin-top:-20px;">
<i class="icon-chevron-down"></i>
</a>
</div>
<div id="collapseOne" class="accordion-body collapse" >
<div class="accordion-inner" style="height:300px;overflow-y:auto">
<table class="table">
<th> Id </th>
<th> Type</th>
<th> Add/Edit </th>
<th> Data </th>
<tbody>
<% $.each(upload_collection, function(index, obj){%>
<tr>
<td>
<%=obj.id%>
</td>
<td>
<%=obj.entity_name%>
</td>
<td>
<%=obj.action%>
</td>
<td>
<%=JSON.stringify(obj.data)%>
</td>
</tr>
<%})%>
</tbody>
</table>
</div>
</div>
</div>
<button id="reset_database" class="btn btn-small btn-primary" title= "Delete your database and download fresh database from server">Delete and Download Database</button>
</SCRIPT>
<SCRIPT TYPE="text/template" ID="form_template">
<div id = "form_div">
<form name="<%=entity_name%>" class="">
<%=form_template%>
<% if (inline == true) { %>
<table id= "inline" class="table">
<thead id ="inline_header">
</thead>
<tbody id= "inline_body">
</tbody>
</table>
<button id='add_rows' type= "button" class="btn btn-info btn-small">Add empty rows</button>
<% } %>
<div class="form-actions">
<button id='button1' type="submit" class="btn btn-primary action_button" data-loading-text="Saving..."><%=button1%></button>
<%if(button2){%>
<button id='button2' type= "button" class="btn btn-primary action_button"><%=button2%></button>
<%}%>
</div>
</form>
</div>
</SCRIPT>
<SCRIPT TYPE="text/template" ID="dashboard_breadcrumb">
<li class='active' >Dashboard</li>
</SCRIPT>
<SCRIPT TYPE="text/template" ID="list_breadcrumb">
<li><a href='#'>Dashboard</a> <span class='divider'>/</span></li><li class='active'><%= bread %></li>
</SCRIPT>
<SCRIPT TYPE="text/template" ID="add_edit_breadcrumb">
<li><a href="#">Dashboard</a> <span class="divider">/</span></li>
<li><a href="#<%=bread1%>"><%=bread2%></a> <span class="divider">/</span></li>
<li class="active"><%=add_or_edit%></li>
</SCRIPT>
<SCRIPT TYPE="text/template" ID="list_view_template">
<div id="legend">
<legend class=""><%= page_header %></legend>
</div>
<div >
<table id= "list_table" class="table table-striped display">
<thead>
<%= table_header%>
</thead>
</table>
</div>
<div id="loaderimg"><img src="/media/coco/app/images/loading_text.gif" /></div>
<p id="sort-helptext" style="margin-top:50px; font-size:11px; color:grey; font-style:italic; display:none;">
For multiple column sorting, press and hold the shift key while sorting each column.
</p>
</SCRIPT>
<SCRIPT TYPE="text/template" ID="options_template">
<option value=<%=id%>><%=name%></option>
</SCRIPT>
<SCRIPT TYPE="text/template" ID="login">
<div id="login_modal" class="modal hide fade" >
<div class="modal-header">
<h3>Login</h3>
</div>
<div class="modal-body">
<span class="text-error" id="error_msg"></span>
<form action="">
<fieldset>
<div class="clearfix">
<%if(typeof(username)=="undefined"){%>
<input id="username" type="text" placeholder="Username">
<%}else{%>
<input id="username" type="text" placeholder="Username" value="<%= username%>" disabled>
<%}%>
</div>
<div class="clearfix">
<input id="password" type="password" placeholder="Password">
</div>
<button id= "login_button" class="btn primary" type="submit" data-loading-text="Logging In...">Sign in</button>
<br><a id="change_user">Sign in as a different user</a>
</fieldset>
</form>
</div>
</div>
</SCRIPT>
<!--Core Framework templates end here -->
<!--//////////////////////////////////////////////////// Progress TEMPLATES Start ///////////////////////////////////////////////-->
<SCRIPT TYPE="text/template" ID="progress_list_item_template">
<tr>
<%if(typeof(online_id)!="undefined"){%>
<td><%= online_id %></td>
<%}else{%>
<td>Not uploaded</td>
<%}%>
<td><%= state.state_name %></td>
<td><%= project.project_name %></td>
<td><%= month %></td>
<td><%= year %></td>
<td class="nrlm-hide-cell"><%= Two_1 %></td>
<td class="nrlm-hide-cell"><%= Two_2 %></td>
<td class="nrlm-hide-cell"><%= Two_3 %></td>
<td class="nrlm-hide-cell"><%= Three_1 %></td>
<td class="nrlm-hide-cell"><%= Three_2 %></td>
<td class="nrlm-hide-cell"><%= Three_4 %></td>
<td class="nrlm-hide-cell"><%= Three_5 %></td>
<td class="nrlm-hide-cell"><%= Three_6 %></td>
<td class="nrlm-hide-cell"><%= Three_7 %></td>
<td class="nrlm-hide-cell"><%= Three_8 %></td>
<td class="nrlm-hide-cell"><%= Four_1 %></td>
<td class="nrlm-hide-cell"><%= Four_2 %></td>
<td class="nrlm-hide-cell"><%= Four_3 %></td>
<td class="nrlm-hide-cell"><%= Four_4 %></td>
<td class="nrlm-hide-cell"><%= Four_5 %></td>
<td class="nrlm-hide-cell"><%= Four_6 %></td>
<td class="nrlm-hide-cell"><%= Five_1 %></td>
<td class="nrlm-hide-cell"><%= Five_2 %></td>
<td class="nrlm-hide-cell"><%= Five_5 %></td>
<td class="nrlm-hide-cell"><%= Five_6 %></td>
<td class="nrlm-hide-cell"><%= Five_7 %></td>
<td class="nrlm-hide-cell"><%= Five_8 %></td>
<td class="nrlm-hide-cell"><%= Five_9 %></td>
<td class="nrlm-hide-cell"><%= Five_10 %></td>
<td class="nrlm-hide-cell"><%= Five_11 %></td>
<td class="nrlm-hide-cell"><%= Five_12 %></td>
<td class="nrlm-hide-cell"><%= Five_13 %></td>
<td class="nrlm-hide-cell"><%= Five_14 %></td>
<td class="nrlm-hide-cell"><%= Six_1 %></td>
<td class="nrlm-hide-cell"><%= Six_2 %></td>
<td class="nrlm-hide-cell"><%= Six_5 %></td>
<td class="nrlm-hide-cell"><%= Six_6 %></td>
<td class="nrlm-hide-cell"><%= Six_7 %></td>
<td class="nrlm-hide-cell"><%= Six_8 %></td>
<td class="nrlm-hide-cell"><%= Six_9 %></td>
<td class="nrlm-hide-cell"><%= Six_10 %></td>
<td class="nrlm-hide-cell"><%= Six_11 %></td>
<td class="nrlm-hide-cell"><%= Six_12 %></td>
<td class="nrlm-hide-cell"><%= Six_13 %></td>
<td class="nrlm-hide-cell"><%= Six_14 %></td>
<td class="nrlm-hide-cell"><%= Seven_1 %></td>
<td class="nrlm-hide-cell"><%= Seven_2 %></td>
<td class="nrlm-hide-cell"><%= Seven_3 %></td>
<td class="nrlm-hide-cell"><%= Seven_4 %></td>
<td class="nrlm-hide-cell"><%= Seven_5 %></td>
<td class="nrlm-hide-cell"><%= Seven_6 %></td>
<td class="nrlm-hide-cell"><%= Seven_7 %></td>
<td class="nrlm-hide-cell"><%= Seven_8 %></td>
<td class="nrlm-hide-cell"><%= Seven_9 %></td>
<td>
<a href="#progress/edit/<%= id %>" class="edit" title="Edit this entry"><i class="icon-pencil"></i></a>
</td>
</tr>
</SCRIPT>
<SCRIPT TYPE="text/template" ID="progress_table_template">
<tr>
<th>Id</th>
<th>State</th>
<th>Project</th>
<th>Month</th>
<th>Year</th>
<th class="nrlm-hide-cell">Number of Blocks in which intensive strategy implementation is in progress</th>
<th class="nrlm-hide-cell">Number of Gram Panchayats in which intensive strategy implementation is in progress</th>
<th class="nrlm-hide-cell">Number of villages in which intensive strategy implementation is in progress</th>
<th class="nrlm-hide-cell">Number of new SHGs promoted with NRLM target households</th>
<th class="nrlm-hide-cell">Number of Pre-NRLM SHGs brought into the NRLM fold after revival/training and strengthening</th>
<th class="nrlm-hide-cell">Number of SHGs that are provided with basic SHG training at community level</th>
<th class="nrlm-hide-cell">Number of SHGs in which standard bookkeeping practices is introduced</th>
<th class="nrlm-hide-cell">Number of SHGs that are following Pancha Sutras</th>
<th class="nrlm-hide-cell">Number of SHGs bookkeepers identified and positioned after initial training</th>
<th class="nrlm-hide-cell">Number of internal CRPs identified and trained in the intensive blocks</th>
<th class="nrlm-hide-cell">Number of Villages in which PIP process has been completed</th>
<th class="nrlm-hide-cell">Number of GPs in which PIP process has been completed</th>
<th class="nrlm-hide-cell">Number of Poorest of the Poor (POP) households identified</th>
<th class="nrlm-hide-cell">Number of Poor households identified</th>
<th class="nrlm-hide-cell">Number of Non-Poor households identified</th>
<th class="nrlm-hide-cell">Number of households having persons with disability member</th>
<th class="nrlm-hide-cell">Number of SHGs which are more than 3 month old</th>
<th class="nrlm-hide-cell">Number of 3 month old SHGs having bank accounts</th>
<th class="nrlm-hide-cell">Number of predominantly SC-SHGs (SC≥50%) provided RF</th>
<th class="nrlm-hide-cell">Number of predominantly ST-SHGs (ST≥50%) provided RF</th>
<th class="nrlm-hide-cell">Number of predominantly Minority-SHGs (Minority≥50%) provided RF</th>
<th class="nrlm-hide-cell">Number of Other-SHGs (with SC/ST<50%) provided RF</th>
<th class="nrlm-hide-cell">Number of predominantly PWD-SHGs (PWD≥50%) provided RF</th>
<th class="nrlm-hide-cell">Amount of RF provided to predominantly SC-SHGs (SC≥50%) (Rs. in lakhs)</th>
<th class="nrlm-hide-cell">Amount of RF provided to predominantly ST-SHGs (ST≥50%) (Rs. in lakhs)</th>
<th class="nrlm-hide-cell">Amount of RF provided to predominantly Minority-SHGs (Minority≥50%) (Rs. in lakhs)</th>
<th class="nrlm-hide-cell">Amount of RF provided to Other-SHGs (SC/ST<50%) (Rs. in lakhs)</th>
<th class="nrlm-hide-cell">Amount of RF provided to predominantly PWD-SHGs (PWD≥50%) (Rs. in lakhs)</th>
<th class="nrlm-hide-cell">Number of 6 month old SHGs in intensive blocks</th>
<th class="nrlm-hide-cell">Number of SHGs which have prepared Micro Investment Plan (MIP)/Micro Credit Plan (MCP)</th>
<th class="nrlm-hide-cell">Number of predominantly SC-SHG (SC≥50%) provided CIF</th>
<th class="nrlm-hide-cell">Number of predominantly ST-SHG (ST≥50%) provided CIF</th>
<th class="nrlm-hide-cell">Number of predominantly Minority-SHG (Minority≥50%) provided CIF</th>
<th class="nrlm-hide-cell">Number of Other-SHG (with SC/ST<50%) provided CIF</th>
<th class="nrlm-hide-cell">Number of predominantly PWD-SHG (PWD≥50%) provided CIF</th>
<th class="nrlm-hide-cell">Amount of CIF provided to predominantly SC-SHG (SC≥50%) (Rs. in lakhs)</th>
<th class="nrlm-hide-cell">Amount of CIF provided to predominantly ST-SHG (ST≥50%) (Rs. in lakhs)</th>
<th class="nrlm-hide-cell">Amount of CIF provided to predominantly Minority-SHG (Minority≥50%) (Rs. in lakhs)</th>
<th class="nrlm-hide-cell">Amount of CIF provided to Other-SHG (SC/ST<50%) (Rs. in lakhs)</th>
<th class="nrlm-hide-cell">Amount of CIF provided to predominantly PWD-SHG (PWD≥50%) (Rs. in lakhs)</th>
<th class="nrlm-hide-cell">Number of VOs formed</th>
<th class="nrlm-hide-cell">Number of SHGs holding membership in the VOs</th>
<th class="nrlm-hide-cell">Number of VOs provided training on basic VO management</th>
<th class="nrlm-hide-cell">Number of VOs having trained Bookkeeper</th>
<th class="nrlm-hide-cell">Number of VOs provided VRF (CIF)</th>
<th class="nrlm-hide-cell">Amount of VRF(CIF) provided to VOs (in Rs.Lakhs)</th>
<th class="nrlm-hide-cell">Number of CLFs formed</th>
<th class="nrlm-hide-cell">Number of CLFs provided CIF</th>
<th class="nrlm-hide-cell">Amount of CIF provided to CLFs (in Rs.Lakhs)</th>
<th></th>
</tr>
</SCRIPT>
<SCRIPT TYPE="text/template" ID="progress_add_edit_template">
<fieldset>
<legend>Current Progress</legend>
<p class="bold-helptext"></p>
<div class="control-group">
<label class="control-label nrlm-bold">
Month
</label>
<div class="controls">
<select name="month" class="" id="month">
<option value="">------------</option>
<option value="Jan">Jan</option>
<option value="Feb">Feb</option>
<option value="Mar">Mar</option>
<option value="Apr">Apr</option>
<option value="May">May</option>
<option value="Jun">Jun</option>
<option value="Jul">Jul</option>
<option value="Aug">Aug</option>
<option value="Sep">Sep</option>
<option value="Oct">Oct</option>
<option value="Nov">Nov</option>
<option value="Dec">Dec</option>
</select>
</div>
<!--span class="help-block" >Select the Month for which progress is being reported</span-->
</div>
<div class="control-group">
<label class="control-label nrlm-bold">
Year
</label>
<div class="controls">
<select name="year" class="" id="year">
<option value="">------------</option>
<option value="2013">2013</option>
<option value="2014">2014</option>
<option value="2015">2015</option>
<option value="2016">2016</option>
</select>
</div>
<!--span class="help-block" >Select the Year for which progress is being reported</span-->
</div>
<div class="control-group">
<label class="control-label nrlm-bold">
State
</label>
<div class="controls">
<select id = "id_state" name="state" class="chzn-select">
</select>
</div>
<!--span class="help-block" >Select the name of the State</span-->
</div>
<div class="control-group">
<label class="control-label nrlm-bold">
Project Name
</label>
<div class="controls">
<select id = "id_project" name="project" class="chzn-select">
</select>
</div>
<!--span class="help-block" >Select the name of the Project</span-->
</div>
</fieldset>
<fieldset>
<legend>
<div class="row control-group">
<div class="span6">
<h4 class="nrlm-color-green">Progress of Implementations in Intensive blocks (Planned/Targeted vs Covered)</h4>
</div>
</div>
</legend>
<div class="row control-group">
<div class="span6">
<label>Number of Blocks in which intensive strategy implementation is in progress</label>
</div>
<div class="span2">
<input type="text" placeholder="Enter Progress" name="Two_1">
</div>
</div>
<div class="row control-group">
<div class="span6">
<label>Number of Gram Panchayats in which intensive strategy implementation is in progress</label>
</div>
<div class="span2">
<input type="text" placeholder="Enter Progress" name="Two_2">
</div>
</div>
<div class="row control-group">
<div class="span6">
<label>Number of villages in which intensive strategy implementation is in progress</label>
</div>
<div class="span2">
<input type="text" placeholder="Enter Progress" name="Two_3">
</div>
</div>
</fieldset>
<fieldset>
<legend>
<div class="row control-group">
<div class="span6">
<h4 class="nrlm-color-green">Promotion of New SHGs, Revival of Dormant/Defunct SHGs and Strengthening of SHGs through training</h4>
</div>
</div></legend>
<div class="row control-group">
<div class="span6">
<label>Number of new SHGs promoted with NRLM target households</label>
</div>
<div class="span2">
<input type="text" placeholder="Enter Progress" name="Three_1">
</div>
</div>
<div class="row control-group">
<div class="span6">
<label>Number of Pre-NRLM SHGs brought into the NRLM fold after revival/training and strengthening</label>
</div>
<div class="span2">
<input type="text" placeholder="Enter Progress" name="Three_2">
</div>
</div>
<div class="row control-group">
<div class="span6">
<label>Number of SHGs that are provided with basic SHG training at community level</label>
</div>
<div class="span2">
<input type="text" placeholder="Enter Progress" name="Three_4">
</div>
</div>
<div class="row control-group">
<div class="span6">
<label>Number of SHGs in which standard bookkeeping practices is introduced</label>
</div>
<div class="span2">
<input type="text" placeholder="Enter Progress" name="Three_5">
</div>
</div>
<div class="row control-group">
<div class="span6">
<label>Number of SHGs that are following Pancha Sutras</label>
</div>
<div class="span2">
<input type="text" placeholder="Enter Progress" name="Three_6">
</div>
</div>
<div class="row control-group">
<div class="span6">
<label>Number of SHGs bookkeepers identified and positioned after initial training</label>
</div>
<div class="span2">
<input type="text" placeholder="Enter Progress" name="Three_7">
</div>
</div>
<div class="row control-group">
<div class="span6">
<label>Number of internal CRPs identified and trained in the intensive blocks</label>
</div>
<div class="span2">
<input type="text" placeholder="Enter Progress" name="Three_8">
</div>
</div>
</fieldset>
<fieldset>
<legend>
<div class="row control-group">
<div class="span6">
<h4 class="nrlm-color-green">Progress of participatory Identification of the poor (PIP) (Report only if PIP is undertaken)</h4>
</div>
</div></legend>
<div class="row control-group">
<div class="span6">
<label>Number of Villages in which PIP process has been completed</label>
</div>
<div class="span2">
<input type="text" placeholder="Enter Progress" name="Four_1">
</div>
</div>
<div class="row control-group">
<div class="span6">
<label>Number of GPs in which PIP process has been completed</label>
</div>
<div class="span2">
<input type="text" placeholder="Enter Progress" name="Four_2">
</div>
</div>
<div class="row control-group">
<div class="span6">
<label>Number of Poorest of the Poor (POP) households identified</label>
</div>
<div class="span2">
<input type="text" placeholder="Enter Progress" name="Four_3">
</div>
</div>
<div class="row control-group">
<div class="span6">
<label>Number of Poor households identified</label>
</div>
<div class="span2">
<input type="text" placeholder="Enter Progress" name="Four_4">
</div>
</div>
<div class="row control-group">
<div class="span6">
<label>Number of Non-Poor households identified</label>
</div>
<div class="span2">
<input type="text" placeholder="Enter Progress" name="Four_5">
</div>
</div>
<div class="row control-group">
<div class="span6">
<label>Number of households having persons with disability member</label>
</div>
<div class="span2">
<input type="text" placeholder="Enter Progress" name="Four_6">
</div>
</div>
</fieldset>
<fieldset>
<legend>
<div class="row control-group">
<div class="span6">
<h4 class="nrlm-color-green">Revolving Fund (RF) support in Intensive Blocks (all status under NRLM)</h4>
</div>
</div></legend>
<div class="row control-group">
<div class="span6">
<label>Number of SHGs which are more than 3 month old</label>
</div>
<div class="span2">
<input type="text" placeholder="Enter Progress" name="Five_1">
</div>
</div>
<div class="row control-group">
<div class="span6">
<label>Number of 3 month old SHGs having bank accounts</label>
</div>
<div class="span2">
<input type="text" placeholder="Enter Progress" name="Five_2">
</div>
</div>
<div class="row control-group">
<div class="span6">
<label>Number of predominantly SC-SHGs (SC≥50%) provided RF</label>
</div>
<div class="span2">
<input type="text" placeholder="Enter Progress" name="Five_5">
</div>
</div>
<div class="row control-group">
<div class="span6">
<label>Number of predominantly ST-SHGs (ST≥50%) provided RF</label>
</div>
<div class="span2">
<input type="text" placeholder="Enter Progress" name="Five_6">
</div>
</div>
<div class="row control-group">
<div class="span6">
<label>Number of predominantly Minority-SHGs (Minority≥50%) provided RF</label>
</div>
<div class="span2">
<input type="text" placeholder="Enter Progress" name="Five_7">
</div>
</div>
<div class="row control-group">
<div class="span6">
<label>Number of Other-SHGs (with SC/ST<50%) provided RF</label>
</div>
<div class="span2">
<input type="text" placeholder="Enter Progress" name="Five_8">
</div>
</div>
<div class="row control-group">
<div class="span6">
<label>Number of predominantly PWD-SHGs (PWD≥50%) provided RF</label>
</div>
<div class="span2">
<input type="text" placeholder="Enter Progress" name="Five_9">
</div>
</div>
<div class="row control-group">
<div class="span6">
<label>Amount of RF provided to predominantly SC-SHGs (SC≥50%) (Rs. in lakhs)</label>
</div>
<div class="span2">
<input type="text" placeholder="Enter Amount (Rs. in lakhs)" name="Five_10">
</div>
</div>
<div class="row control-group">
<div class="span6">
<label>Amount of RF provided to predominantly ST-SHGs (ST≥50%) (Rs. in lakhs)</label>
</div>
<div class="span2">
<input type="text" placeholder="Enter Amount (Rs. in lakhs)" name="Five_11">
</div>
</div>
<div class="row control-group">
<div class="span6">
<label>Amount of RF provided to predominantly Minority-SHGs (Minority≥50%) (Rs. in lakhs)</label>
</div>
<div class="span2">
<input type="text" placeholder="Enter Amount (Rs. in lakhs)" name="Five_12">
</div>
</div>
<div class="row control-group">
<div class="span6">
<label>Amount of RF provided to Other-SHGs (SC/ST<50%) (Rs. in lakhs)</label>
</div>
<div class="span2">
<input type="text" placeholder="Enter Amount (Rs. in lakhs)" name="Five_13">
</div>
</div>
<div class="row control-group">
<div class="span6">
<label>Amount of RF provided to predominantly PWD-SHGs (PWD≥50%) (Rs. in lakhs)</label>
</div>
<div class="span2">
<input type="text" placeholder="Enter Amount (Rs. in lakhs)" name="Five_14">
</div>
</div>
</fieldset>
<fieldset>
<legend>
<div class="row control-group">
<div class="span6">
<h4 class="nrlm-color-green">CIF support in intensive Blocks (all status under NRLM)</h4>
</div>
</div></legend>
<div class="row control-group">
<div class="span6">
<label>Number of 6 month old SHGs in intensive blocks</label>
</div>
<div class="span2">
<input type="text" placeholder="Enter Progress" name="Six_1">
</div>
</div>
<div class="row control-group">
<div class="span6">
<label>Number of SHGs which have prepared Micro Investment Plan (MIP)/Micro Credit Plan (MCP)</label>
</div>
<div class="span2">
<input type="text" placeholder="Enter Progress" name="Six_2">
</div>
</div>
<div class="row control-group">
<div class="span6">
<label>Number of predominantly SC-SHG (SC≥50%) provided CIF</label>
</div>
<div class="span2">
<input type="text" placeholder="Enter Progress" name="Six_5">
</div>
</div>
<div class="row control-group">
<div class="span6">
<label>Number of predominantly ST-SHG (ST≥50%) provided CIF</label>
</div>
<div class="span2">
<input type="text" placeholder="Enter Progress" name="Six_6">
</div>
</div>
<div class="row control-group">
<div class="span6">
<label>Number of predominantly Minority-SHG (Minority≥50%) provided CIF</label>
</div>
<div class="span2">
<input type="text" placeholder="Enter Progress" name="Six_7">
</div>
</div>
<div class="row control-group">
<div class="span6">
<label>Number of Other-SHG (with SC/ST<50%) provided CIF</label>
</div>
<div class="span2">
<input type="text" placeholder="Enter Progress" name="Six_8">
</div>
</div>
<div class="row control-group">
<div class="span6">
<label>Number of predominantly PWD-SHG (PWD≥50%) provided CIF</label>
</div>
<div class="span2">
<input type="text" placeholder="Enter Progress" name="Six_9">
</div>
</div>
<div class="row control-group">
<div class="span6">
<label>Amount of CIF provided to predominantly SC-SHG (SC≥50%) (Rs. in lakhs)</label>
</div>
<div class="span2">
<input type="text" placeholder="Enter Amount (Rs. in lakhs)" name="Six_10">
</div>
</div>
<div class="row control-group">
<div class="span6">
<label>Amount of CIF provided to predominantly ST-SHG (ST≥50%) (Rs. in lakhs)</label>
</div>
<div class="span2">
<input type="text" placeholder="Enter Amount (Rs. in lakhs)" name="Six_11">
</div>
</div>
<div class="row control-group">
<div class="span6">
<label>Amount of CIF provided to predominantly Minority-SHG (Minority≥50%) (Rs. in lakhs)</label>
</div>
<div class="span2">
<input type="text" placeholder="Enter Amount (Rs. in lakhs)" name="Six_12">
</div>
</div>
<div class="row control-group">
<div class="span6">
<label>Amount of CIF provided to Other-SHG (SC/ST<50%) (Rs. in lakhs)</label>
</div>
<div class="span2">
<input type="text" placeholder="Enter Amount (Rs. in lakhs)" name="Six_13">
</div>
</div>
<div class="row control-group">
<div class="span6">
<label>Amount of CIF provided to predominantly PWD-SHG (PWD≥50%) (Rs. in lakhs)</label>
</div>
<div class="span2">
<input type="text" placeholder="Enter Amount (Rs. in lakhs)" name="Six_14">
</div>
</div>
</fieldset>
<fieldset>
<legend>
<div class="row control-group">
<div class="span6">
<h4 class="nrlm-color-green">Promotion and Functioning of Village Organizations(Vos)/CLFs in Intensive Blocks (Fill-in Only if Applicable)</h4>
</div>
</div></legend>
<div class="row control-group">
<div class="span6">
<label>Number of VOs formed</label>
</div>
<div class="span2">
<input type="text" placeholder="Enter Progress" name="Seven_1">
</div>
</div>
<div class="row control-group">
<div class="span6">
<label>Number of SHGs holding membership in the VOs</label>
</div>
<div class="span2">
<input type="text" placeholder="Enter Progress" name="Seven_2">
</div>
</div>
<div class="row control-group">
<div class="span6">
<label>Number of VOs provided training on basic VO management</label>
</div>
<div class="span2">
<input type="text" placeholder="Enter Progress" name="Seven_3">
</div>
</div>
<div class="row control-group">
<div class="span6">
<label>Number of VOs having trained Bookkeeper</label>
</div>
<div class="span2">
<input type="text" placeholder="Enter Progress" name="Seven_4">
</div>
</div>
<div class="row control-group">
<div class="span6">
<label>Number of VOs provided VRF (CIF)</label>
</div>
<div class="span2">
<input type="text" placeholder="Enter Progress" name="Seven_5">
</div>
</div>
<div class="row control-group">
<div class="span6">
<label>Amount of VRF(CIF) provided to VOs (in Rs.Lakhs)</label>