Bug 23493: Replace rowGrouping with rowGroup
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / admin / branch_transfer_limits.tt
1 [% USE raw %]
2 [% USE Asset %]
3 [% USE Branches %]
4 [% SET footerjs = 1 %]
5 [% INCLUDE 'doc-head-open.inc' %]
6 <title>Koha &rsaquo; Administration &rsaquo; Library checkin and transfer policy</title>
7 [% INCLUDE 'doc-head-close.inc' %]
8 <style>td { text-align: center; } .sorted { min-width: 50%; }</style>
9 </head>
10
11 <body id="admin_branch_transfer_limits" class="admin">
12 [% INCLUDE 'header.inc' %]
13 [% INCLUDE 'prefs-admin-search.inc' %]
14
15 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a> &rsaquo; Set library checkin and transfer policy</div>
16
17 <div class="main container-fluid">
18     <div class="row">
19         <div class="col-sm-10 col-sm-push-2">
20             <main>
21
22 <h1>Library [% branchcode | html %] - [% Branches.GetName( branchcode ) | html %] Checkin and transfer policy</h1>
23     <form method="get" action="/cgi-bin/koha/admin/branch_transfer_limits.pl" id="selectlibrary">
24         <label for="branchselect">Select a library :</label>
25         <select name="branchcode" id="branchselect">
26             [% PROCESS options_for_libraries libraries => Branches.all( selected => branchcode, unfiltered => 1 ) %]
27         </select>
28     </form>
29
30 <p class="help">Check the boxes for the libraries you accept to checkin items from.</p>
31 <fieldset>[% IF ( limitType == 'ccode' ) %]<strong>For all collection codes: </strong>[% ELSE %]<strong>For all item types: </strong>[% END %]<a id="CheckAll" href="#"><i class="fa fa-check"></i> Select all</a> | <a id="UncheckAll" href="#"><i class="fa fa-remove"></i> Clear all</a></fieldset>
32
33
34   <div id="transferlimit_tabs" class="toptabs">
35     <ul class="ui-tabs-nav">
36       [% FOREACH codes_loo IN codes_loop %]<li><a href="#[% codes_loo.code | uri %]set">[% codes_loo.code | html %]</a></li>[% END %]
37     </ul>
38
39         <form method="post" action="branch_transfer_limits.pl">
40
41     [% FOREACH codes_loo IN codes_loop %]
42     <div id="[% codes_loo.code | html %]set">
43     <h4>Policy for [% codes_loo.limit_phrase | html %]: [% codes_loo.code | html %]</h4>
44     <p><a id="CheckAll[% codes_loo.code | html %]table" class="checkall" href="#"><i class="fa fa-check"></i> Select all</a> | <a id="UncheckAll[% codes_loo.code | html %]table" class="uncheckall" href="#"><i class="fa fa-remove"></i> Clear all</a></p>
45
46         <table id="[% codes_loo.code | html %]table" class="sorted">
47             <thead>
48                 <tr>
49                     <th>Library</th>
50                     <th>Allow transfer?</th>
51                 </tr>
52             </thead>
53
54             <tbody>
55                     [% FOREACH to_branch_loo IN codes_loo.to_branch_loop %]
56                         <tr>
57                             <td><label style="min-width:400px;" for="[% to_branch_loo.code | html %][% to_branch_loo.toBranch | html %]row">[% to_branch_loo.toBranch | html %] - [% Branches.GetName( to_branch_loo.toBranch ) | html %]</label></td>
58                             <td>
59                             [% IF ( to_branch_loo.isChecked ) %]
60                                 <input type="checkbox" id="[% to_branch_loo.code | html %][% to_branch_loo.toBranch | html %]row" name="[% to_branch_loo.code | html %]_[% to_branch_loo.toBranch | html %]" checked="checked" />
61                             [% ELSE %]
62                                 <input type="checkbox" id="[% to_branch_loo.code | html %][% to_branch_loo.toBranch | html %]row" name="[% to_branch_loo.code | html %]_[% to_branch_loo.toBranch | html %]" />
63                             [% END %]
64                             </td>
65                         </tr>
66                     [% END %]
67             </tbody>
68         </table>
69         </div>
70                 [% END %]
71
72         <fieldset class="action">
73             <input type="hidden" name="updateLimits" value="1" />
74             <input type="hidden" name="branchcode" value="[% branchcode | html %]" />
75             <input type="submit" value="Save" />
76             <a class="cancel" href="/cgi-bin/koha/admin/admin-home.pl">Cancel</a>
77         </fieldset>
78         </form>
79         </div>
80
81             </main>
82         </div> <!-- /.col-sm-10.col-sm-push-2 -->
83
84         <div class="col-sm-2 col-sm-pull-10">
85             <aside>
86                 [% INCLUDE 'admin-menu.inc' %]
87             </aside>
88         </div> <!-- /.col-sm-2.col-sm-pull-10 -->
89      </div> <!-- /.row -->
90
91 [% MACRO jsinclude BLOCK %]
92     [% Asset.js("js/admin-menu.js") | $raw %]
93     [% INCLUDE 'datatables.inc' %]
94     [% Asset.js("lib/jquery/plugins/jquery.checkboxes.min.js") | $raw %]
95     <script>
96         $(document).ready(function(){
97             $("#CheckAll").click(function(){ $("#transferlimit_tabs").checkCheckboxes(); return false; });
98             $("#UncheckAll").click(function(){ $("#transferlimit_tabs").unCheckCheckboxes(); return false; });
99             $('#transferlimit_tabs').tabs();
100
101              $('#branchselect').change(function() {
102                 $('#selectlibrary').submit();
103              });
104
105             var checkall = $(".checkall");
106             var uncheckall = $(".uncheckall");
107
108             $(checkall).click(function(){
109                 var tid = $(this).attr("id");
110                 tid = tid.replace("CheckAll","");
111                 $("#"+tid).checkCheckboxes();
112                 return false;
113             });
114
115             $(uncheckall).click(function(){
116                 var tid = $(this).attr("id");
117                 tid = tid.replace("UncheckAll","");
118                 $("#"+tid).unCheckCheckboxes();
119                 return false;
120             });
121             $(".sorted").dataTable($.extend(true, {}, dataTablesDefaults, {
122                 "aoColumnDefs": [
123                     { "aTargets": [ -1 ], "bSortable": false, "bSearchable": false },
124                 ],
125                 'bPaginate': false
126             }));
127         });
128     </script>
129 [% END %]
130 [% INCLUDE 'intranet-bottom.inc' %]