Bug 32030: Add descriptions to authorised value categories
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / admin / authorised_values.tt
1 [% USE raw %]
2 [% USE Asset %]
3 [% SET footerjs = 1 %]
4 [% INCLUDE 'doc-head-open.inc' %]
5 <title>
6     [% IF op == 'add_form' %]
7         [% IF ( action_modify ) %]Modify authorized value &rsaquo; [% END %]
8         [% IF ( action_add_value ) %]New authorized value &rsaquo; [% END %]
9         [% IF ( action_add_category ) %]New category &rsaquo; [% END %]
10         [% IF ( action_modify || action_add_value ) %]
11             Authorized values for category [% category_name | html %] &rsaquo;
12         [% END %]
13     [% END %]
14     Authorized values &rsaquo; Administration &rsaquo; Koha
15 </title>
16 [% INCLUDE 'doc-head-close.inc' %]
17
18 [% FILTER collapse %]
19     <style>
20         fieldset.rows div.toptabs li {
21             clear: none;
22             margin-right:.4em;
23             padding-bottom: 0;
24             width: auto;
25         }
26         #lib,
27         #lib_opac {
28             width: 75%;
29         }
30         .authval-icons {
31             display: flex;
32             flex-wrap: wrap;
33             clear: both;
34         }
35         .authval-icons label {
36             float: none;
37             width: auto;
38         }
39     </style>
40 [% END %]
41 </head>
42
43 <body id="admin_authorised_values" class="admin">
44 [% WRAPPER 'header.inc' %]
45     [% INCLUDE 'prefs-admin-search.inc' %]
46 [% END %]
47
48 [% WRAPPER 'sub-header.inc' %]
49 <nav id="breadcrumbs" aria-label="Breadcrumb" class="breadcrumb">
50     <ol>
51         <li>
52             <a href="/cgi-bin/koha/mainpage.pl">Home</a>
53         </li>
54         <li>
55             <a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a>
56         </li>
57
58         [% IF op == 'add_form' %]
59             <li>
60                 <a href="/cgi-bin/koha/admin/authorised_values.pl">Authorized values</a>
61             </li>
62             [% IF ( action_modify || action_add_value ) %]
63                 <li>
64                     <a href="#">
65                         <a href="/cgi-bin/koha/admin/authorised_values.pl?searchfield=[% category_name | uri %]">Authorized values for category [% category_name | html %]</a>
66                     </a>
67                 </li>
68                 [% IF ( action_modify ) %]
69                     <li>
70                         <a href="#" aria-current="page">
71                             Modify authorized value
72                         </a>
73                     </li>
74                 [% END %]
75                 [% IF ( action_add_value ) %]
76                     <li>
77                         <a href="#" aria-current="page">
78                             New authorized value
79                         </a>
80                     </li>
81                 [% END %]
82             [% END %]
83             [% IF ( action_add_category ) %]
84                 <li>
85                     <a href="#" aria-current="page">
86                         New category
87                     </a>
88                 </li>
89             [% END %]
90
91         [% ELSIF ( loop || searchfield ) %]
92             <li>
93                 <a href="/cgi-bin/koha/admin/authorised_values.pl">Authorized values</a>
94             </li>
95             <li>
96                 <a href="#" aria-current="page">
97                     Authorized values for category [% category.category_name | html %]
98                 </a>
99             </li>
100
101         [% ELSE %]
102             <li>
103                 <a href="#" aria-current="page">
104                     Authorized values
105                 </a>
106             </li>
107         [% END # /IF op == 'add_form' %]
108     </ol>
109 </nav> <!-- /#breadcrumbs -->
110 [% END %]
111
112 <div class="main container-fluid">
113     <div class="row">
114         <div class="col-sm-10 col-sm-push-2">
115             <main>
116
117                 [% IF op == 'add_form' %]
118                     <h1>
119                         [% IF ( action_modify ) %]<span>Modify authorized value</span>[% END %]
120                         [% IF ( action_add_value ) %]<span>New authorized value</span>[% END %]
121                         [% IF ( action_add_category ) %]<span>New category</span>[% END %]
122                     </h1>
123
124                     [% IF ( action_modify ) %]
125                         <div class="note">
126                             <i class="fa fa-exclamation"></i> <strong>NOTE:</strong> If you change an authorized value code, existing records using it won't be updated. Changes to value descriptions will show immediately.
127                         </div>
128                     [% END %]
129
130                     <form action="/cgi-bin/koha/admin/authorised_values.pl" name="Aform" method="post" class="validated">
131                         <fieldset class="rows">
132                             [% IF action_add_category %]
133                                 <ol>
134                                     <li>
135                                         <label for="category" class="required">Category: </label>
136                                         <input type="text" name="category"  id="category" size="32" maxlength="32" class="focus required" />
137                                         <span class="required">Required</span>
138                                         <input type="hidden" name="op" value="add_category" />
139                                     </li>
140                                 </ol>
141                             [% ELSE %]
142                                 <ol>
143                                     <li>
144                                         <span class="label">Category</span>
145                                         <input type="hidden" name="op" value="add" />
146                                         <input type="hidden" name="category" value="[% category_name | html %]" /> [% category_name | html %]
147                                     </li>
148                                     <li>
149                                         <label for="authorised_value">Authorized value: </label>
150                                         [% IF ( action_modify ) %]
151                                             <input type="hidden" id="id" name="id" value="[% av.id | html %]" />
152                                         [% END %]
153                                         <input type="text" id="authorised_value" name="authorised_value" value="[% av.authorised_value | html %]" maxlength="80" class="focus" />
154                                     </li>
155                                     <li>
156                                         <label for="lib">Description: </label>
157                                         <input type="text" name="lib" id="lib" value="[% av.lib | html %]" maxlength="200" />
158                                     </li>
159                                     <li>
160                                         <label for="lib_opac">Description (OPAC): </label>
161                                         <input type="text" name="lib_opac" id="lib_opac" value="[% av.lib_opac | html %]" maxlength="200" />
162                                     </li>
163                                     <li><label for="branches">Library limitations: </label>
164                                         <select id="branches" name="branches" multiple size="10">
165                                             <option value="">All libraries</option>
166                                             [% FOREACH branch IN branches_loop %]
167                                                 [% IF ( branch.selected ) %]
168                                                     <option selected="selected" value="[% branch.branchcode | html %]">[% branch.branchname | html %]</option>
169                                                 [% ELSE %]
170                                                     <option value="[% branch.branchcode | html %]">[% branch.branchname | html %]</option>
171                                                 [% END %]
172                                             [% END %]
173                                         </select>
174                                         <div class="hint">Select 'All libraries' if this authorized value must be displayed all the time. Otherwise select libraries you want to associate with this value.</div>
175                                     </li>
176                                 </ol>
177
178                                 <div id="icons" class="toptabs">
179                                     <h5>Choose an icon:</h5>
180                                     <ul class="nav nav-tabs" role="tablist">
181                                         <li role="presentation">
182                                             <a aria-controls="none" role="tab" data-toggle="tab" href="#none">None</a>
183                                         </li>
184                                         [% FOREACH imageset IN imagesets %]
185                                             [% IF ( imageset.imagesetactive ) %]
186                                                 <li role="presentation" class="active">
187                                             [% ELSE %]
188                                                 <li role="presentation">
189                                             [% END %]
190                                                 <a aria-controls="[% imageset.imagesetname | html %]" role="tab" data-toggle="tab" href="#[% imageset.imagesetname | uri %]">[% imageset.imagesetname | html %]</a>
191                                             </li>
192                                         [% END %]
193                                         [% IF av.imageurl.match('^http') %]
194                                             <li role="presentation" class="active">
195                                         [% ELSE %]
196                                             <li role="presentation">
197                                         [% END %]
198                                             <a aria-controls="remote" role="tab" data-toggle="tab" href="#remote">Remote image</a>
199                                         </li>
200                                     </ul>
201                                     <div class="tab-content">
202                                         <div id="none" role="tabpanel" class="tab-pane">
203                                             <div class="authval-icons">
204                                                 <label for="noimage">No image:
205                                                     <input type="radio" name="image" id="noimage" value="removeImage" />
206                                                 </label>
207                                             </div>
208                                         </div> <!-- /.tab-pane -->
209
210                                         [% FOREACH imageset IN imagesets %]
211                                             [% IF ( imageset.imagesetactive ) %]
212                                                 <div id="[% imageset.imagesetname | html %]" role="tabpanel" class="tab-pane active">
213                                             [% ELSE %]
214                                                 <div id="[% imageset.imagesetname | html %]" role="tabpanel" class="tab-pane">
215                                             [% END %]
216                                                 <div class="authval-icons">
217                                                     [% FOREACH image IN imageset.images %]
218                                                         <label>
219                                                             [% IF ( image.StaffImageUrl ) %]
220                                                                 <img src="[% image.StaffImageUrl | html %]" alt="[% image.StaffImageUrl | html %]" title="[% image.StaffImageUrl | html %]" />
221                                                             [% ELSE %]
222                                                             [% END %]
223                                                             [% IF ( image.checked ) %]
224                                                                 <input type="radio" name="image" value="[% image.KohaImage | html %]" checked="checked" />
225                                                             [% ELSE %]
226                                                                 [% IF ( image.KohaImage ) %]
227                                                                     <!-- to delete the radio button if there is no image after -->
228                                                                     <input type="radio" name="image" value="[% image.KohaImage | html %]" />
229                                                                 [% END %]
230                                                             [% END %]
231                                                         </label>
232                                                     [% END # /FOREACH image %]
233                                                 </div> <!-- /.authval-icons -->
234                                             </div> <!-- /.tab-pane -->
235                                         [% END # /FOREACH imageset %]
236
237                                         [% IF av.imageurl.match('^http') %]
238                                             <div id="remote" role="tabpanel" class="tab-pane active">
239                                         [% ELSE %]
240                                             <div id="remote" role="tabpanel" class="tab-pane">
241                                         [% END %]
242                                             <label for="remote_image_check"> Remote image:</label>
243                                             [% IF av.imageurl.match('^http') %]
244                                                 <input type="radio" id="remote_image_check" name="image" value="remoteImage" checked="checked" />
245                                                 <input type="text" name="remoteImage" size="48" maxlength="200" value="[% av.imageurl | html %]" onmousedown="document.getElementById('remote_image_check').checked = true;" />
246                                                 <img src="[% av.imageurl | html %]" alt="" />
247                                             [% ELSE %]
248                                                 <input type="radio" id="remote_image_check" name="image" value="remoteImage" />
249                                                 <input type="text" name="remoteImage" size="48" maxlength="200" value="" onmousedown="document.getElementById('remote_image_check').checked = true;" />
250                                             [% END %]
251                                         </div> <!-- /.tab-pane -->
252                                     </div> <!-- /.tab-content -->
253                                 </div> <!-- /#icons -->
254                             [% END # /IF action_add_category %]
255                         </fieldset>
256
257                         <fieldset class="action">
258                             <input type="hidden" name="id" value="[% av.id | html %]" />
259                             <input type="submit" class="btn btn-primary" value="Save" />
260                             <a class="cancel" href="/cgi-bin/koha/admin/authorised_values.pl?searchfield=[% category_name | url %]">Cancel</a>
261                         </fieldset>
262                     </form>
263                 [% END # /IF op == 'add_form' %]
264
265                 [% IF op == 'list' %]
266                     <div id="toolbar" class="btn-toolbar">
267                         <a id="addcat" class="btn btn-default" href= "/cgi-bin/koha/admin/authorised_values.pl?op=add_form"><i class="fa fa-plus"> </i> New category</a>
268                         [% IF ( searchfield ) %]
269                             <a id="addauth" class="btn btn-default" href= "/cgi-bin/koha/admin/authorised_values.pl?op=add_form&amp;category=[% category.category_name | url %]"><i class="fa fa-plus"> </i> New authorized value for [% category.category_name | html %]</a>
270                         [% END %]
271                     </div>
272
273                     [% IF ( searchfield ) %]
274                         <h1>Authorized values for category [% category.category_name | html %]</h1>
275                         [% PROCESS category_descriptions code_category = category.category_name %]
276                     [% ELSE %]
277                         <h1>Authorized values</h1>
278                     [% END %]
279
280                     [% IF ( searchfield ) %]
281                         <div class="note">
282                             <i class="fa fa-exclamation"></i> <strong>NOTE:</strong> If you change an authorized value code, existing records using it won't be updated. Changes to value descriptions will show immediately.
283                         </div>
284                     [% END %]
285
286                     [% FOR m IN messages %]
287                         <div class="dialog [% m.type | html %]">
288                             [% SWITCH m.code %]
289                             [% CASE 'error_on_update' %]
290                                 <span>An error occurred when updating this authorized value. Perhaps the value already exists.</span>
291                             [% CASE 'error_on_insert' %]
292                                 <span>An error occurred when inserting this authorized value. Perhaps the value or the category already exists.</span>
293                             [% CASE 'error_on_insert_cat' %]
294                                 <span>An error occurred when inserting this authorized value category. Perhaps the category name already exists.</span>
295                             [% CASE 'error_on_delete' %]
296                                 <span>An error occurred when deleting this authorized value. Check the logs.</span>
297                             [% CASE 'error_on_delete_category' %]
298                                 <span>An error occurred when deleting this authorized value category. Check the logs.</span>
299                             [% CASE 'success_on_update' %]
300                                 <span>Authorized value updated successfully.</span>
301                             [% CASE 'success_on_insert' %]
302                                 <span>Authorized value added successfully.</span>
303                             [% CASE 'success_on_insert_cat' %]
304                                 <span>Authorized value category added successfully.</span>
305                             [% CASE 'success_on_delete' %]
306                                 <span>Authorized value deleted successfully.</span>
307                             [% CASE 'success_on_delete_category' %]
308                                 <span>Authorized value category deleted successfully.</span>
309                             [% CASE 'cat_already_exists' %]
310                                 <span>This authorized value category already exists.</span>
311                             [% CASE 'invalid_category_name' %]
312                                 <span>The authorized value category 'branches', 'itemtypes' and 'cn_source' are used internally by Koha and are not valid.</span>
313                             [% CASE %]
314                                 <span>[% m.code | html %]</span>
315                             [% END %]
316                         </div>
317                     [% END # /FOR m IN messages %]
318
319                     <div class="page-section">
320                     [% IF ( searchfield ) %]
321
322                         <form action="/cgi-bin/koha/admin/authorised_values.pl" method="get" id="category">
323                             <p>
324                                 <label for="category_search">Show category: </label>
325                                 <select name="searchfield" id="category_search">
326                                     [% FOR c IN category_names %]
327                                         [% IF c == searchfield %]
328                                             <option value="[% c | html %]" selected="selected">[% c | html %]</option>
329                                         [% ELSE %]
330                                             <option value="[% c | html %]">[% c | html %]</option>
331                                         [% END %]
332                                     [% END %]
333                                 </select>
334                             </p>
335                         </form> <!-- /#category -->
336
337                         [% IF loop %]
338                             <table id="categoriest" class="authorized_values_table">
339                                 <thead>
340                                     <tr>
341                                         <th>Authorized value</th>
342                                         <th>Description</th>
343                                         <th>Description (OPAC)</th>
344                                         <th>Icon</th>
345                                         <th>Library limitations</th>
346                                         <th class="noExport NoSort">Actions</th>
347                                     </tr>
348                                 </thead>
349                                 <tbody>
350                                     [% FOREACH loo IN loop %]
351                                         <tr>
352                                             <td>[% loo.authorised_value | html %]</td>
353                                             <td>[% loo.lib | html %]</td>
354                                             <td>[% loo.lib_opac | html %]</td>
355                                             <td>
356                                                 [% IF ( loo.image ) %]<img src="[% loo.image | url %]" alt=""/>[% ELSE %]&nbsp;[% END %]</td>
357                                             <td>
358                                                 [% IF loo.branches.size > 0 %]
359                                                     [% branches_str = "" %]
360                                                     [% FOREACH branch IN loo.branches %]
361                                                         [%- IF loop.first -%]
362                                                             [% branches_str = branch.branchname _ " (" _ branch.branchcode _ ")" %]
363                                                         [% ELSE %]
364                                                             [% branches_str = branches_str _ "\n" _ branch.branchname _ " (" _ branch.branchcode _ ")" %]
365                                                         [% END %]
366                                                     [% END %]
367                                                     <span class="library_limitation" title="[% branches_str | html %]">
368                                                         [% IF loo.branches.size > 1 %]
369                                                             <span>[% loo.branches.size | html %] library limitations</span>
370                                                         [% ELSE %]
371                                                             <span>[% loo.branches.size | html %] library limitation</span>
372                                                         [% END %]
373                                                 [% ELSE %]
374                                                     <span>No limitation</span>
375                                                 [% END # /IF loo.branches.size > 0 %]
376                                             </td>
377                                             <td class="actions"><a href="/cgi-bin/koha/admin/authorised_values.pl?op=add_form&amp;id=[% loo.id | uri %]" class="btn btn-default btn-xs"><i class="fa fa-pencil"></i> Edit</a>
378                                             <a class="delete btn btn-default btn-xs" href="/cgi-bin/koha/admin/authorised_values.pl?op=delete&amp;searchfield=[% searchfield | uri %]&amp;id=[% loo.id | uri %]"><i class="fa fa-trash"></i> Delete</a></td>
379                                         </tr>
380                                     [% END # /FOREACH loop %]
381                                 </tbody>
382                             </table> <!-- /#categoriest -->
383                         [% ELSE %]
384                             <div class="dialog message">
385                                 <p>There are no authorized values defined for [% category.category_name | html %]</p>
386                                 <form action="/cgi-bin/koha/admin/authorised_values.pl" method="get">
387                                     <input type="hidden" name="op" value="add_form" />
388                                     <input type="hidden" name="category" value="[% category.category_name | html %]" />
389                                     <button type="submit"><i class="fa fa-plus"></i> Add a new authorized value</button>
390                                 </form>
391                                 [% UNLESS category.is_system %]
392                                     <form id="delete_category" action="/cgi-bin/koha/admin/authorised_values.pl" method="post">
393                                         <input type="hidden" name="op" value="delete_category" />
394                                         <input type="hidden" name="category_name" value="[% category.category_name | html %]" />
395                                         <button type="submit"><i class="fa fa-plus"></i> Delete category '[% category.category_name | html %]' </button>
396                                     </form>
397                                 [% END %]
398                             </div>
399                         [% END # /IF loop %]
400
401                     [% ELSE # category was selected %]
402                         <table id="categoriest" class="authorized_values_table">
403                             <thead>
404                                 <tr>
405                                     <th>Category</th>
406                                     <th>Description</th>
407                                     <th class="noExport">&nbsp;</th>
408                                 </tr>
409                             </thead>
410                             <tbody>
411                                 [% FOR c IN category_names %]
412                                     <tr>
413                                         <td><a href="/cgi-bin/koha/admin/authorised_values.pl?searchfield=[% c | uri %]">[% c | html %]</a></td>
414                                         <td>
415                                             [% PROCESS category_descriptions code_category = c %]
416                                         </td>
417                                         <td>
418                                             <a id="addauth" class="btn btn-default btn-xs" href= "/cgi-bin/koha/admin/authorised_values.pl?op=add_form&amp;category=[% c | uri %]"><i class="fa fa-plus"> </i> Add</a>
419                                         </td>
420                                     </tr>
421                                 [% END # /FOR c %]
422                             </tbody>
423                         </table> <!-- /#categoriest -->
424                     [% END # /IF ( searchfield  )%]
425                     </div>
426
427                 [% END # /IF op == 'list' %]
428
429             </main>
430         </div> <!-- /.col-sm-10.col-sm-push-2 -->
431
432         <div class="col-sm-2 col-sm-pull-10">
433             <aside>
434                 [% INCLUDE 'admin-menu.inc' %]
435             </aside>
436         </div> <!-- /.col-sm-2.col-sm-pull-10 -->
437      </div> <!-- /.row -->
438
439 [% MACRO jsinclude BLOCK %]
440     [% Asset.js("js/admin-menu.js") | $raw %]
441     [% INCLUDE 'datatables.inc' %]
442     [% INCLUDE 'columns_settings.inc' %]
443     <script>
444         $(document).ready(function() {
445
446             KohaTable("categoriest", {
447                 "aaSorting": [[ 0, "asc" ]],
448                 "sPaginationType": "full"
449             });
450
451             if ( $("#branches option:selected").length < 1 ) {
452                 $("#branches option:first").attr("selected", "selected");
453             }
454
455             $("a.delete").click(function(){
456                 return confirm(_("Are you sure you want to delete this authorized value?"));
457             });
458             $('#category_search').change(function() {
459                 $('#category').submit();
460             });
461             $(".library_limitation").tooltip();
462
463             $("#delete_category").on('submit', function(){
464                 return confirm(_("Are you sure you want to delete this authorized value category?"));
465             });
466
467             if( $(".tab-pane.active").length < 1 ){
468                 $("#icons a:first").tab("show");
469             }
470         });
471     </script>
472 [% END %]
473
474 [% BLOCK category_descriptions %]
475     [% SWITCH code_category %]
476         [% CASE 'Asort1' %]
477             <p>Used for acquisitions statistical purposes</p>
478         [% CASE 'Asort2' %]
479             <p>Used for acquisitions statistical purposes</p>
480         [% CASE 'BOR_NOTES' %]
481             <p>Values for custom patron messages that appear on the circulation screen and the OPAC. The value in the description field should be the message text and is limited to 200 characters</p>
482         [% CASE 'branches' %]
483             <p></p>
484         [% CASE 'Bsort1' %]
485             <p>Values that can be entered to fill in the patron’s sort 1 field, that can be used for statistical purposes</p>
486         [% CASE 'Bsort2' %]
487             <p>Values that can be entered to fill in the patron’s sort 2 field, that can be used for statistical purposes</p>
488         [% CASE 'CAND' %]
489             <p></p>
490         [% CASE 'CCODE' %]
491             <p>Collections (appear when cataloging and working with items)</p>
492         [% CASE 'cn_source' %]
493             <p></p>
494         [% CASE 'CONTROL_NUM_SEQUENCE' %]
495             <p></p>
496         [% CASE 'COUNTRY' %]
497             <p>Used in UNIMARC 102 $a</p>
498         [% CASE 'DAMAGED' %]
499             <p>Descriptions for items marked as damaged (appears when cataloging and working with items)</p>
500         [% CASE 'DEPARTMENT' %]
501             <p>Departments are required by and will be used in the Course Reserves module</p>
502         [% CASE 'ETAT' %]
503             <p>Used in French UNIMARC installations in field 995 $o to identify item status. Similar to NOT_LOAN</p>
504         [% CASE 'ERM_AGREEMENT_CLOSURE_REASON' %]
505             <p>Close reasons for agreements (E-Resource management module)</p>
506         [% CASE 'ERM_AGREEMENT_LICENSE_LOCATION' %]
507             <p>Locations of the licenses' agreements (E-Resource management module)</p>
508         [% CASE 'ERM_AGREEMENT_LICENSE_STATUS' %]
509             <p>Statuses of the licenses' agreements(E-Resource management module)</p>
510         [% CASE 'ERM_AGREEMENT_RENEWAL_PRIORITY' %]
511             <p>Renewal priorities of agreements (E-Resource management module)</p>
512         [% CASE 'ERM_AGREEMENT_STATUS' %]
513             <p>Statuses of agreements (E-Resource management module)</p>
514         [% CASE 'ERM_AGREEMENT_USER_ROLES' %]
515             <p>Roles for users (E-Resource management module)</p>
516         [% CASE 'ERM_LICENSE_STATUS' %]
517             <p>Statuses of the licenses (E-Resource management module)</p>
518         [% CASE 'ERM_LICENSE_TYPE' %]
519             <p>Types of the licenses (E-Resource management module)</p>
520         [% CASE 'ERM_PACKAGE_CONTENT_TYPE' %]
521             <p>Content type of the packages (E-Resource management module)</p>
522         [% CASE 'ERM_PACKAGE_TYPE' %]
523             <p>Types of the packages (E-Resource management module)</p>
524         [% CASE 'ERM_TITLE_PUBLICATION_TYPE' %]
525             <p>Publication types of the titles (E-Resource management module)</p>
526         [% CASE 'HINGS_AS' %]
527             <p>General holdings: acquisition status designator :: This data element specifies acquisition status for the unit at the time of the holdings report.</p>
528         [% CASE 'HINGS_C' %]
529             <p>General holdings: completeness designator</p>
530         [% CASE 'HINGS_PF' %]
531             <p>Physical form designators</p>
532         [% CASE 'HINGS_RD' %]
533             <p>General holdings: retention designator :: This data element specifies the retention policy for the unit at the time of the holdings report.</p>
534         [% CASE 'HINGS_UT' %]
535             <p>General holdings: type of unit designator</p>
536         [% CASE 'HOLD_CANCELLATION' %]
537             <p>Reasons why a hold might have been cancelled</p>
538         [% CASE 'AR_CANCELLATION' %]
539             <p>Reasons why an article request might have been cancelled</p>
540         [% CASE 'HSBND_FREQ' %]
541             <p>Frequencies used by the housebound module. They are displayed on the housebound tab in the patron account in staff.</p>
542         [% CASE 'ITEMTYPECAT' %]
543             <p>Allows multiple Item types to be searched in a category. Categories can be entered into the Authorized value ITEMTYPECAT. To combine Item types to this category, enter this Search category to any Item types</p>
544         [% CASE 'itemtypes' %]
545             <p></p>
546         [% CASE 'LANG' %]
547             <p>ISO 639-2 standard language codes</p>
548         [% CASE 'LOC' %]
549             <p>Shelving location (usually appears when adding or editing an item). LOC maps to items.location in the Koha database.</p>
550         [% CASE 'LOST' %]
551             <p>Descriptions for the items marked as lost (appears when adding or editing an item)</p>
552         [% CASE 'NOT_LOAN' %]
553             <p>Reasons why a title is not for loan</p>
554         [% CASE 'OPAC_SUG' %]
555             <p>A list of reasons displayed in the suggestion form on the OPAC.</p>
556         [% CASE 'ORDER_CANCELLATION_REASON' %]
557             <p>Reasons why an order might have been cancelled</p>
558         [% CASE 'PAYMENT_TYPE' %]
559             <p>Populates a dropdown list of custom payment types when paying fines</p>
560         [% CASE 'qualif' %]
561             <p>Function codes (author, editor, collaborator, etc.) used in UNIMARC 7XX $4 (French)</p>
562         [% CASE 'RELTERMS' %]
563             <p>French terms of relations</p>
564         [% CASE 'REPORT_GROUP' %]
565             <p>A way to sort and filter your reports, the default values in this category include the Koha modules (Accounts, Acquitisions, Catalog, Circulation, Patrons)</p>
566         [% CASE 'REPORT_SUBGROUP' %]
567             <p>Can be used to further sort and filter your reports. This category is empty by default. Values here need to include the authorized value code from REPORT_GROUP in the Description (OPAC) field to link the subgroup to the appropriate group.</p>
568         [% CASE 'RESTRICTED' %]
569             <p>Restricted status of an item</p>
570         [% CASE 'ROADTYPE' %]
571             <p>Road types to be used in patron addresses</p>
572         [% CASE 'SIP_MEDIA_TYPE' %]
573             <p>Used when creating or editing an item type to assign a SIP specific media type for devices like lockers and sorters.</p>
574         [% CASE 'STACK' %]
575             <p>Shelving control number</p>
576         [% CASE 'SUGGEST' %]
577             <p>List of patron suggestion reject or accept reasons (appears when managing suggestions)</p>
578         [% CASE 'SUGGEST_FORMAT' %]
579             <p>List of Item types to display in a drop down menu on the Purchase suggestion form on the OPAC. When creating the authorized values for SUGGEST_FORMAT, enter a description into this form so it is visible on the OPAC to patrons.</p>
580         [% CASE 'SUGGEST_STATUS' %]
581             <p>A list of additional custom status values for suggestions that can be used in addition to the default values.</p>
582         [% CASE 'TERM' %]
583             <p>Terms to be used in Course Reserves module. Enter terms that will show in the drop down menu when setting up a Course reserve. (For example: Spring, Summer, Winter, Fall).</p>
584         [% CASE 'UPLOAD' %]
585             <p>Categories to be assigned to file uploads. Without a category an upload is considered temporary and may be removed during automated cleanup.</p>
586         [% CASE 'VENDOR_TYPE' %]
587             <p>Values that can be entered to fill in the 'Vendor type' field in the acquisitions module, that can be used for statistical purposes</p>
588         [% CASE 'WITHDRAWN' %]
589             <p>Description of a withdrawn item (appears when adding or editing an item)</p>
590         [% CASE 'YES_NO' %]
591             <p>A generic authorized value field that can be used anywhere you need a simple yes/no pull down menu.</p>
592     [% END %]
593 [% END %]
594
595 [% INCLUDE 'intranet-bottom.inc' %]