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