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