Merge branch 'bug_8942' into 3.12-master
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / admin / authorised_values.tt
1 [% INCLUDE 'doc-head-open.inc' %]
2 <title>Koha &rsaquo; Administration &rsaquo; Authorized values [% IF ( add_form ) %] &rsaquo; [% IF ( action_modify ) %]Modify authorized value[% END %]
3            [% IF ( action_add_value ) %] &rsaquo;  New authorized value[% END %]
4            [% IF ( action_add_category ) %] &rsaquo; New category[% END %][% END %]
5 [% IF ( delete_confirm ) %] &rsaquo; Confirm deletion[% END %]
6 [% IF ( else ) %]Authorized values[% END %]</title>
7 [% INCLUDE 'doc-head-close.inc' %]
8 <script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.tablesorter.min.js"></script>
9 <script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.tablesorter.pager.js"></script>
10 <script type="text/javascript" id="js">$(document).ready(function() {
11         // call the tablesorter plugin
12         $("#table_authorized_values").tablesorter({
13                 sortList: [[1,0]],
14                 headers: { 4: { sorter: false}, 5: { sorter: false}}
15                                 }).tablesorterPager({container: $("#pagertable_authorized_values"),positionFixed: false,size: 50});
16
17     if ( $("#branches option:selected").length < 1 ) {
18         $("#branches option:first").attr("selected", "selected");
19     }
20 }); </script>
21
22 <script type="text/JavaScript" language="JavaScript">
23 //<![CDATA[
24      $(document).ready(function() {
25         $('#icons').tabs();
26      });
27 //]]>
28 </script>
29 [% IF ( else ) %]
30 <script type="text/javascript">
31 //<![CDATA[
32 $(document).ready(function() {
33     $('#category').find("input:submit").hide();
34     $('#searchfield').change(function() {
35         $('#category').submit();
36     });
37 });
38 //]]>
39 </script>
40 [% END %]
41
42 <style type="text/css">
43         fieldset.rows div.toptabs li { clear:none;margin-right:.5em;padding-bottom:0;width:auto; }
44     fieldset.rows div.toptabs .ui-tabs-nav li.ui-tabs-selected {background-color : #F4F8F9; }
45         fieldset.rows .ui-tabs-panel { margin-right : 10px; margin-left : 10px;margin-bottom:10px;}
46     fieldset.rows .ui-tabs-nav { margin-left : 10px; }
47 </style>
48 </head>
49 <body id="admin_authorised_values" class="admin">
50 [% INCLUDE 'header.inc' %]
51 [% INCLUDE 'cat-search.inc' %]
52 <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; [% IF ( add_form ) %] <a href="/cgi-bin/koha/admin/authorised_values.pl">Authorized values</a> &rsaquo; [% IF ( action_modify ) %]Modify authorized value[% END %]
53            [% IF ( action_add_value ) %]New authorized value[% END %]
54            [% IF ( action_add_category ) %]New category[% END %][% END %]
55 [% IF ( delete_confirm ) %] <a href="/cgi-bin/koha/admin/authorised_values.pl">Authorized values</a> &rsaquo; Confirm deletion[% END %]
56 [% IF ( else ) %]Authorized values[% END %]</div>
57
58 <div id="doc3" class="yui-t2">
59    
60    <div id="bd">
61         <div id="yui-main">
62         <div class="yui-b">
63
64 [% IF ( add_form ) %]
65         <h1>
66            [% IF ( action_modify ) %]Modify authorized value[% END %]
67            [% IF ( action_add_value ) %]New authorized value[% END %]
68            [% IF ( action_add_category ) %]New category[% END %]
69         </h1>
70
71     [% IF ( action_modify ) %]<div class="note"><strong>NOTE:</strong> If you change an authorized value, existing records using it won't be updated.</div>[% END %]
72
73         <form action="[% script_name %]" name="Aform" method="post">
74         <input type="hidden" name="op" value="add_validate" />
75     <input type="hidden" name="offset" value="[% offset %]" />
76         <fieldset class="rows"><ol>
77         <li>
78                          [% IF ( action_add_category ) %]<label for="category">Category</label>
79             <input type="text" name="category"  id="category" size="10" maxlength="10" class="focus" />
80                          [% ELSE %]<span class="label">Category</span>
81                 <input type="hidden" name="category" value="[% category %]" />   [% category %]
82                          [% END %]
83         </li>
84         <li>
85             <label for="authorised_value">Authorized value</label>
86      [% IF ( action_modify ) %]<input type="hidden" id="id" name="id" value="[% id %]" />[% END %]
87             [% IF ( action_add_category ) %]
88             <input type="text" id="authorised_value" name="authorised_value" value="[% authorised_value %]" maxlength="80" />
89             [% ELSE %]
90             <input type="text" id="authorised_value" name="authorised_value" value="[% authorised_value %]" maxlength="80" class="focus" />
91             [% END %]
92         </li>
93         <li>
94             <label for="lib">Description</label>
95             <input type="text" name="lib" id="lib" value="[% lib %]" maxlength="200" />
96         </li>
97         <li>
98             <label for="lib_opac">Description (OPAC)</label>
99             <input type="text" name="lib_opac" id="lib_opac" value="[% lib_opac %]" maxlength="200" />
100         </li>
101         <li><label for="branches">Branches limitation: </label>
102             <select id="branches" name="branches" multiple size="10">
103                 <option value="">All branches</option>
104                 [% FOREACH branch IN branches_loop %]
105                   [% IF ( branch.selected ) %]
106                     <option selected="selected" value="[% branch.branchcode %]">[% branch.branchname %]</option>
107                   [% ELSE %]
108                     <option value="[% branch.branchcode %]">[% branch.branchname %]</option>
109                   [% END %]
110                 [% END %]
111             </select>
112             <span>Select All if this authorised value must to be displayed all the time. Otherwise select librairies you want to associate with this value.
113             </span>
114         </li>
115
116                 </ol>
117         <div id="icons" class="toptabs" style="clear:both">
118         <h5 style="margin-left:10px;">Choose an icon:</h5>
119                         <ul>
120                   <li><a href="#none">None</a></li>
121                                   [% FOREACH imageset IN imagesets %]
122                         [% IF ( imageset.imagesetactive ) %]<li class="ui-tabs-selected">[% ELSE %]<li>[% END %]<a href="#[% imageset.imagesetname %]">[% imageset.imagesetname %]</a></li>
123                                   [% END %]
124                         </ul>
125   <div id="none"><ul>
126   <li><label for="noimage">No image: </label><input type="radio" name="imageurl" id="noimage" value="removeImage" /></li>
127   </ul>
128   <br class="clear" /></div>
129   [% FOREACH imageset IN imagesets %]
130   <div id="[% imageset.imagesetname %]"><ul>
131   [% FOREACH image IN imageset.images %]
132                         <li style="float: none; display: inline; clear : none; width: auto;">
133             <label> [% IF ( image.StaffImageUrl ) %]
134               <img src="[% image.StaffImageUrl %]" alt="[% image.StaffImageUrl %]" title="[% image.StaffImageUrl %]" />
135         [% ELSE %]
136         [% END %]
137     [% IF ( image.checked ) %]
138               <input type="radio" name="imageurl" value="[% image.KohaImage %]" checked="checked" />
139     [% ELSE %]
140               [% IF ( image.KohaImage ) %] <!-- to delete the radio button if there is no image after -->
141               <input type="radio" name="imageurl" value="[% image.KohaImage %]" />
142               [% END %]
143     [% END %]
144             </label>
145                         </li>
146   [% END %]</ul>
147   <br class="clear" />
148   </div>
149   [% END %]
150   </div>
151         </fieldset>
152        <fieldset class="action"> <input type="hidden" name="id" value="[% id %]" />
153         <input type="submit" value="Save" /> <a class="cancel" href="/cgi-bin/koha/admin/authorised_values.pl?searchfield=[% category %]">Cancel</a></fieldset>
154     </form>
155 [% END %]
156
157
158 [% IF ( delete_confirm ) %]
159         <div class="dialog alert">
160 <h3>Confirm deletion</h3>
161 <table>
162         <tr>
163                 <th>Category</th>
164                 <th>Value</th>
165                 <th>Description</th>
166                 <th>Description (OPAC)</th>
167         </tr>
168         <tr>
169             <td>[% searchfield %]</td>
170             <td>[% Tvalue %]</td>
171             <td>[% Tlib %]</td>
172             <td>[% Tlib_opac %]</td>
173         </tr>
174         </table>
175         <form action="[% script_name %]" method="post">
176                 <input type="hidden" name="op" value="delete_confirmed" />
177                 <input type="hidden" name="id" value="[% id %]" />
178         <input type="hidden" name="searchfield" value="[% searchfield %]" /><fieldset class="action"><input type="submit" value="Yes, delete" class="approve" /></form>
179 <form action="[% script_name %]" method="get"><input type="hidden" name="searchfield" value="[% searchfield %]" /><input type="submit" value="No, do not delete" class="deny" /></form>
180 </div>
181 [% END %]
182
183 [% IF ( else ) %]
184
185 <div id="toolbar" class="btn-toolbar">
186     <a id="addauth" class="btn btn-small" href= "/cgi-bin/koha/admin/authorised_values.pl?op=add_form&amp;category=[% category %]">New authorized value for [% category %]</a>
187     <a id="addcat" class="btn btn-small" href= "/cgi-bin/koha/admin/authorised_values.pl?op=add_form">New category</a>
188 </div>
189
190 <h1>Authorized values</h1>
191 <div class="note"><strong>NOTE:</strong> If you change an authorized value, existing records using it won't be updated.</div>
192
193 [% IF ( duplicate_category ) %]
194 <div class="dialog alert">Could not add value &quot;[% duplicate_value %]&quot; for category &quot;[% duplicate_category %]&quot; &mdash; value already present.
195 </div>
196 [% END %]
197 <form action="/cgi-bin/koha/admin/authorised_values.pl" method="post" id="category"><label for="searchfield">Show category: </label>[% tab_list %] <input type="submit" value="Submit" /></form>
198 [% IF ( category == 'Bsort1' ) %]
199     <p>An authorized value attached to patrons, that can be used for stats purposes</p>
200 [% END %]
201 [% IF ( category == 'Bsort2' ) %]
202     <p>An authorized value attached to patrons, that can be used for stats purposes</p>
203 [% END %]
204 [% IF ( category == 'Asort1' ) %]
205     <p>An authorized value attached to acquisitions, that can be used for stats purposes</p>
206 [% END %]
207 [% IF ( category == 'Asort2' ) %]
208     <p>An authorized value attached to acquisitions, that can be used for stats purposes</p>
209 [% END %]
210 [% IF ( category == 'SUGGEST' ) %]
211     <p>Reasons to reject or accept patron suggestions</p>
212 [% END %]
213 [% IF ( category == 'DAMAGED' ) %]
214     <p>Statuses to describe a damaged item</p>
215 [% END %]
216 [% IF ( category == 'LOST' ) %]
217    <p>Statuses to describe a lost item</p>
218 [% END %]
219 [% IF ( category == 'MANUAL_INV' ) %]
220     <p>Additional values for manual invoice types</p>
221 [% END %]
222 [% IF ( category == 'BOR_NOTES' ) %]
223     <p>Values for custom patron notes</p>
224 [% END %]
225 [% IF ( category == 'LOC' ) %]
226     <p>Values for shelving locations</p>
227 [% END %]
228 [% IF ( category == 'CCODE' ) %]
229     <p>Values for collection codes</p>
230  [% END %]
231  [% IF ( category == 'NOT_LOAN' ) %]
232     <p>Statuses to describe why an item is not for loan</p>
233  [% END %]
234 <h3>Authorized values for category [% category %]:</h3>
235
236 [% IF ( loop ) %]<div id="pagertable_authorized_values">
237 [% INCLUDE 'table-pager.inc' perpage='50' %]
238 </div>[% END %]
239
240 [% IF ( loop ) %]<table id="table_authorized_values" class="tablesorter">
241 <thead><tr>
242         <th>Authorized value</th>
243         <th>Description</th>
244         <th>Description (OPAC)</th>
245         <th>Icon</th>
246     <th>Branches limitations</th>
247         <th>Edit</th>
248         <th>Delete</th>
249         </tr>
250 </thead><tbody>
251 [% FOREACH loo IN loop %]
252 [% UNLESS ( loop.odd ) %]
253 <tr>
254 [% ELSE %]
255 <tr>
256 [% END %]
257         <td>[% loo.authorised_value %]</td>
258         <td>[% loo.lib %]</td>
259         <td>[% loo.lib_opac %]</td>
260         <td>[% IF ( loo.imageurl ) %]<img src="[% loo.imageurl %]" alt=""/>[% ELSE %]&nbsp;[% END %]</td>
261     <td>
262         [% IF loo.branches.size > 0 %]
263             [% branches_str = "" %]
264             [% FOREACH branch IN loo.branches %]
265                 [% branches_str = branches_str _ " " _ branch.branchname _ "(" _ branch.branchcode _ ")" %]
266             [% END %]
267             <span href="#" title="[% branches_str %]">
268                 [% IF loo.branches.size > 1 %]
269                     [% loo.branches.size %] branches limitations
270                 [% ELSE %]
271                     [% loo.branches.size %] branch limitation
272                 [% END %]
273         [% ELSE %]
274             No limitation
275         [% END %]
276     </td>
277         <td><a href="[% loo.edit %]">Edit</a></td>
278         <td><a href="[% loo.delete %]">Delete</a></td>
279 </tr>
280 [% END %]
281 </tbody></table>[% ELSE %]
282 <div class="dialog message">There are no authorized values defined for [% category %]</div>
283 [% END %]
284
285 [% IF ( isprevpage ) %]
286 <form class="inline" action="[% script_name %]" method="post">
287 <input type="hidden" name="offset" value="[% prevpage %]" /><input type="hidden" name="searchfield" value="[% searchfield %]" />
288         <input type="submit" value="&lt;&lt; Previous" /></form>
289 [% END %] 
290
291 [% END %]
292
293 </div>
294 </div>
295 <div class="yui-b">
296 [% INCLUDE 'admin-menu.inc' %]
297 </div>
298 </div>
299 [% INCLUDE 'intranet-bottom.inc' %]