Bug 26234: Teach our KohaTable constructor the specific th classes
[koha-equinox.git] / koha-tmpl / intranet-tmpl / prog / en / modules / admin / itemtypes.tt
1 [% USE raw %]
2 [% USE Asset %]
3 [% USE Koha %]
4 [% USE AuthorisedValues %]
5 [% USE Price %]
6 [% USE TablesSettings %]
7 [% SET footerjs = 1 %]
8 [% INCLUDE 'doc-head-open.inc' %]
9 <title>Koha &rsaquo; Administration &rsaquo; Item types [% IF op == 'add_form' %]&rsaquo;
10   [% IF ( itemtype ) %]
11 Modify item type '[% itemtype.itemtype | html %]'
12   [% ELSE %]
13 Add item type
14   [% END %]
15 [% END %]
16 [% IF op == 'delete_confirm' %]&rsaquo;
17   [% IF ( total ) %]
18 Cannot delete item type '[% itemtype.itemtype | html %]'
19   [% ELSE %]
20 Delete item type '[% itemtype.itemtype | html %]'?
21   [% END %]
22 [% END %]
23 [% IF op == 'delete_confirmed' %]&rsaquo;
24 Data deleted
25 [% END %]
26 </title>
27 [% INCLUDE 'doc-head-close.inc' %]
28 <style>
29         fieldset.rows div.toptabs li { clear:none;margin-right:.5em;padding-bottom:0;width:auto; }
30   fieldset.rows div.toptabs .ui-tabs-nav li.ui-tabs-active {background-color : #F4F8F9; }
31         fieldset.rows .ui-tabs-panel { margin-right : 10px; margin-left : 10px;margin-bottom:10px;}
32   fieldset.rows .ui-tabs-nav { margin-left : 10px; }
33 </style>
34 </head>
35
36 <body id="admin_itemtypes" class="admin">
37 [% INCLUDE 'header.inc' %]
38 [% INCLUDE 'prefs-admin-search.inc' %]
39
40 <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 op == 'add_form' %]
41   [% IF itemtype %]
42 <a href="/cgi-bin/koha/admin/itemtypes.pl">Item types</a> &rsaquo; Modify item type '[% itemtype.itemtype | html %]'
43   [% ELSE %]
44 <a href="/cgi-bin/koha/admin/itemtypes.pl">Item types</a> &rsaquo; Add item type
45   [% END %]
46 [% END %]
47 [% IF op == 'delete_confirm' %]
48   [% IF total %]
49 <a href="/cgi-bin/koha/admin/itemtypes.pl">Item types</a> &rsaquo; Cannot delete item type '[% itemtype.itemtype | html %]'
50   [% ELSE %]
51 <a href="/cgi-bin/koha/admin/itemtypes.pl">Item types</a> &rsaquo; Delete item type '[% itemtype.itemtype | html %]'?
52   [% END %]
53 [% END %]
54 [% IF op == 'delete_confirmed' %]
55 <a href="/cgi-bin/koha/admin/itemtypes.pl">Item types</a> &rsaquo;Data deleted
56 [% END %]
57 [% IF op == 'list' %]
58 Item types administration
59 [% END %]</div>
60
61 <div class="main container-fluid">
62     <div class="row">
63         <div class="col-sm-10 col-sm-push-2">
64             <main>
65
66 [% IF op == 'list' %]<div id="toolbar" class="btn-toolbar">
67     <a class="btn btn-default" id="newitemtype" href="/cgi-bin/koha/admin/itemtypes.pl?op=add_form"><i class="fa fa-plus"></i> New item type</a>
68 </div>[% END %]
69
70 [% FOREACH m IN messages %]
71     <div class="dialog [% m.type | html %]">
72         [% SWITCH m.code %]
73         [% CASE 'error_on_update' %]
74             An error occurred when updating this item type. Perhaps the value already exists.
75         [% CASE 'error_on_insert' %]
76             An error occurred when inserting this item type. Perhaps the value already exists.
77         [% CASE 'error_on_delete' %]
78             An error occurred when deleting this item type. Check the logs.
79         [% CASE 'success_on_update' %]
80             Item type updated successfully.
81         [% CASE 'success_on_insert' %]
82             Item type inserted successfully.
83         [% CASE 'success_on_delete' %]
84             Item type deleted successfully.
85         [% CASE 'already_exists' %]
86             This item type already exists.
87         [% CASE 'cannot_be_deleted' %]
88             Cannot delete this item type. <p><strong>This record is in use</strong>. Deletion is not possible.</p>
89         [% CASE %]
90             [% m.code | html %]
91         [% END %]
92     </div>
93 [% END %]
94
95
96 [% IF op == 'add_form' %]
97     [% IF itemtype %]
98         <h3>Modify item type</h3>
99     [% ELSE %]
100         <h3>Add item type</h3>
101     [% END %]
102     <form action="/cgi-bin/koha/admin/itemtypes.pl" name="Aform" method="post" id="itemtypeentry">
103         <input type="hidden" name="op" value="add_validate" />
104         <fieldset class="rows">
105             <ol>
106                 [% IF itemtype %]
107                     <li>
108                         <input type="hidden" name="is_a_modif" value="1" />
109                         <span class="label">Item type: </span> <input type="hidden" name="itemtype" value="[% itemtype.itemtype | html %]" />
110                         [% itemtype.itemtype | html %]
111                     </li>
112                 [% ELSE %]
113                     <li>
114                         <label for="itemtype" class="required">Item type: </label>
115                         <input type="text" id="itemtype" name="itemtype" size="10" maxlength="10" required="required" /> <span class="required">Required</span>
116                     </li>
117                 [% END %]
118                 <li>
119                     <label for="parent_type">Parent item type: </label>
120                     [% IF !is_a_parent && parent_types %]
121                     <select name="parent_type" id="parent_type">
122                         <option value="">None</option>
123                         [% FOREACH pt IN parent_types %]
124                             [% IF parent_type == pt.itemtype %]
125                                 <option value="[% pt.itemtype | html %]" selected="selected">[% pt.description | html %]</option>
126                             [% ELSE %]
127                                 <option value="[% pt.itemtype | html %]">[% pt.description | html %]</option>
128                             [% END %]
129                         [% END %]
130                     </select>
131                     [% ELSIF is_a_parent %]
132                     <input type="text" id="parent_type" value="[% parent_type | html %]" name="parent_type" size="10" maxlength="10" disabled/>
133                     <p>Is a parent to another type, cannot have a parent</p>
134                     [% ELSE %]
135                     <input type="text" id="parent_type" value="[% parent_type | html %]" name="parent_type" size="10" maxlength="10" disabled/>
136                     <p>No available parent types</p>
137                     [% END %]
138                     <span class="hint">Defining a parent type will apply checkout limits for all children as described on the circulation rules page.</span>
139                 </li>
140                 <li>
141                     <label for="description" class="required">Description: </label>
142                     <input type="text" id="description" name="description" size="48" value="[% itemtype.description | html %]" required="required" /> <span class="required">Required</span>
143                     [% IF can_be_translated %]
144                         <a href="/cgi-bin/koha/admin/localization.pl?entity=itemtypes&code=[% itemtype.itemtype | uri %]" title="Translate item type [% itemtype.itemtype | html %]" rel="gb_page_center[600,500]"><i class="fa fa-pencil"></i> Translate into other languages</a>
145                     [% END %]
146                 </li>
147                 <li>
148                     <span class="label">Search category</span>
149                     <select id="searchcategory" name="searchcategory">
150                     <option value="">None</option>
151                         [% FOREACH cat IN searchcategory %]
152                             [% IF cat.authorised_value == itemtype.searchcategory %]
153                                 <option value="[% cat.authorised_value | html %]" selected="selected">
154                                     [% cat.lib | html %]
155                                 </option>
156                             [% ELSE %]
157                                 <option value="[% cat.authorised_value | html %]" >
158                                     [% cat.lib | html %]
159                                 </option>
160                             [% END %]
161                         [% END %]
162                     </select>
163                     <span class="hint">Options are defined as the authorized values for the ITEMTYPECAT category.</span>
164                 </li>
165                 [% IF ( Koha.Preference('noItemTypeImages') && Koha.Preference('OpacNoItemTypeImages') ) %]
166                     <li>
167                         <span class="label">Image: </span>Item type images are disabled. To enable them, turn off the <a href="/cgi-bin/koha/admin/preferences.pl?op=search&amp;searchfield=noItemTypeImages">noItemTypeImages or OpacNoItemTypeImages system preferences</a>
168                     </li>
169                 [% END %]
170             </ol>
171             [% UNLESS Koha.Preference('noItemTypeImages') && Koha.Preference('OpacNoItemTypeImages') %]
172                 <div id="icons" class="toptabs" style="clear:both">
173                     <h5 style="margin-left:10px;">Choose an icon:</h5>
174                     <ul>
175                         <li><a href="#none">None</a></li>
176                         [% FOREACH imageset IN imagesets %]
177                             [% IF ( imageset.imagesetactive ) %]
178                                 <li class="ui-tabs-active">
179                             [% ELSE %]
180                                 <li>
181                             [% END %]
182                             <a href="#[% imageset.imagesetname | uri %]">[% imageset.imagesetname | html %]</a>
183                             </li>
184                         [% END %]
185                         [% IF itemtype.image_location('intranet').match('^http') %]<li class="ui-tabs-active">[% ELSE %]<li>[% END %]<a href="#remote">Remote image</a></li>
186                     </ul>
187                     <div id="none">
188                         <ul>
189                             <li><label for="noimage">No image: </label><input type="radio" name="image" id="noimage" value="removeImage" /></li>
190                         </ul>
191                         <br class="clear" />
192                     </div>
193
194                     [% FOREACH imageset IN imagesets %]
195                         <div id="[% imageset.imagesetname | html %]">
196                             <ul>
197                                 [% FOREACH image IN imageset.images %]
198                                     <li style="float: none; display: inline-block; clear : none; width: auto;">
199                                         <label>
200                                             [% IF image.StaffImageUrl %]
201                                                 <img src="[% image.StaffImageUrl | html %]" alt="[% image.StaffImageUrl | html %]" title="[% image.StaffImageUrl | html %]" />
202                                             [% END %]
203                                             [% IF image.checked %]
204                                                 <input type="radio" name="image" value="[% image.KohaImage | html %]" checked="checked" />
205                                             [% ELSIF image.KohaImage %] <!-- to delete the radio button if there is no image after -->
206                                                 <input type="radio" name="image" value="[% image.KohaImage | html %]" />
207                                             [% END %]
208                                         </label>
209                                     </li>
210                                 [% END %]
211                             </ul>
212                             <br class="clear" />
213                         </div>
214                     [% END %]
215
216                     <div id="remote">
217                         <ul>
218                             <li>
219                                 <label for="remote_image_check"> Remote image:</label>
220                                 [% SET image_location = itemtype.image_location('intranet') %]
221                                 [% IF image_location.match('^http') %]
222                                     <input type="radio" id="remote_image_check" name="image" value="remoteImage" checked="checked" />
223                                     <input type="text" name="remoteImage" size="48" maxlength="200" value="[% image_location | html %]" onmousedown="document.getElementById('remote_image_check').checked = true;" />
224                                     [% IF itemtype.imageurl %]
225                                         <img src="[% image_location | html %]" alt="" />
226                                     [% END %]
227                                 [% ELSE %]
228                                     <input type="radio" id="remote_image_check" name="image" value="remoteImage" />
229                                     <input type="text" name="remoteImage" size="48" maxlength="200" value="" onmousedown="document.getElementById('remote_image_check').checked = true;" />
230                                 [% END %]
231                             </li>
232                         </ul>
233                         <br class="clear" />
234                     </div>
235                 </div>
236             [% END %]
237             <ol class="oladditemtype">
238                 <li>
239                     <label for="hideinopac">Hide in OPAC: </label>
240                     [% IF ( itemtype.hideinopac ) %]
241                         <input type="checkbox" id="hideinopac" name="hideinopac" checked="checked" value="1" />
242                     [% ELSE %]
243                         <input type="checkbox" id="hideinopac" name="hideinopac" value="1" />
244                     [% END %]
245                     <span class="hint">If checked, items of this type will be hidden as filters in OPAC's advanced search.</span>
246                 </li>
247                 <li>
248                     <label for="notforloan">Not for loan: </label>
249                         [% IF itemtype.notforloan %]
250                             <input type="checkbox" id="notforloan" name="notforloan" checked="checked" value="1" />
251                         [% ELSE %]
252                             <input type="checkbox" id="notforloan" name="notforloan" value="1" />
253                         [% END %]
254                         <span class="hint">If checked, no item of this type can be issued. If not checked, every item of this type can be issued unless notforloan is set for a specific item.</span>
255                 </li>
256                 <li>
257                     <label for="rentalcharge">Rental charge: </label>
258                     <input type="text" id="rentalcharge" name="rentalcharge" size="10" value="[% itemtype.rentalcharge | $Price on_editing => 1 %]" />
259                     <span class="hint">This fee is charged once per checkout/renewal per item</span>
260                 </li>
261                 <li>
262                     <label for="rentalcharge_daily">Daily rental charge: </label>
263                     <input type="text" id="rentalcharge_daily" name="rentalcharge_daily" size="10" value="[% itemtype.rentalcharge_daily | $Price on_editing => 1 %]" />
264                     <span class="hint">This fee is charged at checkout/renewal time for each day between the checkout/renewal date and due date for loans specified in days.</span>
265                 </li>
266                 <li>
267                     <label for="rentalcharge_daily_calendar">Daily rentals use calendar: </label>
268                         [% IF itemtype.rentalcharge_daily_calendar %]
269                             <input type="checkbox" id="rentalcharge_daily_calendar" name="rentalcharge_daily_calendar" checked="checked" value="1" />
270                         [% ELSE %]
271                             <input type="checkbox" id="rentalcharge_daily_calendar" name="rentalcharge_daily_calendar" value="1" />
272                         [% END %]
273                         <span class="hint">If checked, daily charge will be calculated using the calendar to exclude holidays. If not checked, the fee will be calculated based on the number of days until due, directly.</span>
274                 </li>
275                 <li>
276                     <label for="rentalcharge_hourly">Hourly rental charge: </label>
277                     <input type="text" id="rentalcharge_hourly" name="rentalcharge_hourly" size="10" value="[% itemtype.rentalcharge_hourly | $Price on_editing => 1 %]" />
278                     <span class="hint">This fee is charged at checkout/renewal time for each hour between the checkout/renewal date and due date for loans specified in hours.</span>
279                 </li>
280                 <li>
281                     <label for="rentalcharge_hourly_calendar">Hourly rentals use calendar: </label>
282                         [% IF itemtype.rentalcharge_hourly_calendar %]
283                             <input type="checkbox" id="rentalcharge_hourly_calendar" name="rentalcharge_hourly_calendar" checked="checked" value="1" />
284                         [% ELSE %]
285                             <input type="checkbox" id="rentalcharge_hourly_calendar" name="rentalcharge_hourly_calendar" value="1" />
286                         [% END %]
287                         <span class="hint">If checked, hourly charge will be calculated using the calendar to exclude holidays. If not checked, the fee will be calculated based on the number of hours until due, directly.</span>
288                 </li>
289                 <li>
290                     <label for="defaultreplacecost">Default replacement cost: </label>
291                     <input type="text" id="defaultreplacecost" name="defaultreplacecost" size="10" value="[% itemtype.defaultreplacecost | html %]" />
292                 </li>
293                 <li>
294                     <label for="processfee">Processing fee (when lost): </label>
295                     <input type="text" id="processfee" name="processfee" size="10" value="[% itemtype.processfee | html %]" />
296                 </li>
297                 <li>
298                     <label for="checkinmsg">Checkin message: </label>
299                     <textarea id="checkinmsg" name="checkinmsg" cols="55" rows="5">[% itemtype.checkinmsg | html %]</textarea>
300                 </li>
301                 <li>
302                     <label for="checkinmsgtype">Checkin message type: </label>
303                     <select type="text" id="checkinmsgtype" name="checkinmsgtype">
304                         [% IF itemtype.checkinmsgtype == 'message' %]
305                             <option value="message" selected="selected">Message</option>
306                         [% ELSE %]
307                             <option value="message">Message</option>
308                         [% END %]
309                         [% IF itemtype.checkinmsgtype == 'alert' %]
310                             <option value="alert" selected="selected">Alert</option>
311                         [% ELSE %]
312                             <option value="alert">Alert</option>
313                         [% END %]
314                     </select>
315                 </li>
316                 <li>
317                     <label for="sip_media_type">SIP media type: </label>
318                     <select id="sip_media_type" name="sip_media_type">
319                         <option value=""></option>
320                         [% FOREACH a IN AuthorisedValues.Get('SIP_MEDIA_TYPE') %]
321                             [% IF a.authorised_value == itemtype.sip_media_type %]
322                                 <option value="[% a.authorised_value | html %]" selected="selected">[% a.lib | html %]</option>
323                             [% ELSE %]
324                                 <option value="[% a.authorised_value | html %]">[% a.lib | html %]</option>
325                             [% END %]
326                         [% END %]
327                     </select>
328                 </li>
329                 <li><label for="branches">Library limitation: </label>
330                     <select id="branches" name="branches" multiple size="10">
331                         <option value="">All libraries</option>
332                         [% FOREACH branch IN branches_loop %]
333                         [% IF ( branch.selected ) %]
334                             <option selected="selected" value="[% branch.branchcode | html %]">[% branch.branchname | html %]</option>
335                         [% ELSE %]
336                             <option value="[% branch.branchcode | html %]">[% branch.branchname | html %]</option>
337                         [% END %]
338                         [% END %]
339                     </select>
340                     <span class="hint">Select 'All libraries' if all libraries use this item type. Otherwise, select the specific libraries that use this item type.</span>
341                 </li>
342                 <li>
343                     <label for="summary">Summary: </label>
344                    <textarea id="summary" name="summary" cols="55" rows="5">[% itemtype.summary | html %]</textarea>
345                     <p>Enter a summary that will overwrite the default one in search results lists. Example, for a website itemtype : </p>
346                     <p><b>&lt;a href="[856u]"&gt;open site&lt;/a&gt;</b> will show the link just below the title</p>
347                 </li>
348             </ol>
349         </fieldset>
350
351         <fieldset class="action">
352             <input type="submit" value="Save changes" />
353             <a href="/cgi-bin/koha/admin/itemtypes.pl" class="cancel">Cancel</a>
354         </fieldset>
355     </form>
356 [% END %]
357
358 [% IF op == 'delete_confirm' %]
359     <div class="dialog alert">
360         <h3>Delete item type '[% itemtype.itemtype | html %]'?</h3>
361         <table>
362             <tr>
363                 <th scope="row">Item type</th>
364                 <td>[% itemtype.itemtype | html %]</td>
365             </tr>
366             <tr><th scope="row">Description</th><td>[% itemtype.translated_description | html %]</td></tr>
367             [% UNLESS Koha.Preference('noItemTypeImages') && Koha.Preference('OpacNoItemTypeImages') %]
368                 <tr>
369                     <th scope="row">Image</th>
370                     <td>
371                         [% SET image_location = itemtype.image_location('intranet') %]
372                         [% IF image_location %]<img src="[% image_location | html %]" alt="" />[% END %]
373                     </td>
374                 </tr>
375             [% END %]
376             <tr><th scope="row">Rental charge</th><td>[% itemtype.rentalcharge | $Price %]</td></tr>
377         </table>
378         <form action="/cgi-bin/koha/admin/itemtypes.pl" method="post">
379             <input type="hidden" name="op" value="delete_confirmed" /><input type="hidden" name="itemtype" value="[% itemtype.itemtype | html %]" />
380             <button type="submit" class="approve"><i class="fa fa-fw fa-check"></i> Yes, delete this item type</button>
381         </form>
382         <form action="/cgi-bin/koha/admin/itemtypes.pl" method="post">
383             <button type="submit" class="deny"><i class="fa fa-fw fa-remove"></i> No, do not delete</button>
384         </form>
385     </div>
386 [% END %]
387
388 [% IF op == 'list' %]
389     <h2>Item types administration</h2>
390     [% IF itemtypes %]
391         <table id="table_item_type">
392           <thead>
393             [% UNLESS Koha.Preference('noItemTypeImages') && Koha.Preference('OpacNoItemTypeImages') %]<th class="noExport">Image</th>[% END %]
394             <th>Description</th>
395             <th>Code</th>
396             <th>Parent code</th>
397             <th>Search category</th>
398             <th>Not for loan</th>
399             <th>Hide in OPAC</th>
400             <th>Rental charge</th>
401             <th>Daily rental charge</th>
402             <th>Hourly rental charge</th>
403             <th>Default replacement cost</th>
404             <th>Processing fee (when lost)</th>
405             <th>Checkin message</th>
406             <th>Library limitations</th>
407             <th class="noExport NoSort">Actions</th>
408           </thead>
409           [% FOREACH itemtype IN itemtypes %]
410             <tr>
411                 [% UNLESS Koha.Preference('noItemTypeImages') && Koha.Preference('OpacNoItemTypeImages') %]
412                     <td>
413                         [% SET image_location = itemtype.image_location('intranet') %]
414                         [% IF image_location %]<img src="[% image_location | html %]" alt="" />[% ELSE %]&nbsp;[% END %]
415                     </td>
416                 [% END %]
417             <td>
418                 [% IF itemtype.parent_type %]
419                     [% IF itemtype.parent.translated_descriptions.size %]
420                         [% itemtype.parent.description | html %] (default)<br/>
421                     [% ELSE %]
422                         [% itemtype.parent.description | html %]
423                     [% END %]
424                     </br>
425                     [% IF itemtype.translated_descriptions.size %]
426                         [% itemtype.description | html %] (default)<br/>
427                         [% FOR description IN itemtype.translated_descriptions %]
428                             [% IF description.translation == itemtype.translated_description %]
429                             --    <b>[% description.translation | html %]</b>
430                             [% ELSE %]
431                             --    [% description.translation | html %] ([% description.lang | html %])
432                             [% END %]
433                             <br/>
434                         [% END %]
435                     [% ELSE %]
436                     --    [% itemtype.description | html %]
437                     [% END %]
438                 [% ELSE %]
439                     [% IF itemtype.translated_descriptions.size %]
440                         [% itemtype.description | html %] (default)<br/>
441                         [% FOR description IN itemtype.translated_descriptions %]
442                             [% IF description.translation == itemtype.translated_description %]
443                                 <b>[% description.translation | html %]</b>
444                             [% ELSE %]
445                                 [% description.translation | html %] ([% description.lang | html %])
446                             [% END %]
447                             <br/>
448                         [% END %]
449                     [% ELSE %]
450                         [% itemtype.description | html %]
451                     [% END %]
452                 [% END %]
453             </td>
454             <td>
455               <a href="/cgi-bin/koha/admin/itemtypes.pl?op=add_form&amp;itemtype=[% itemtype.itemtype | uri %]">
456                 [% itemtype.itemtype | html %]
457               </a>
458             </td>
459             <td>
460                 [% itemtype.parent_type | html %]
461             </td>
462             <td>[% itemtype.searchcategory | html %]</td>
463             <td>[% IF ( itemtype.notforloan ) %]Yes[% ELSE %]&nbsp;[% END %]</td>
464             <td>[% IF ( itemtype.hideinopac ) %]Yes[% ELSE %]&nbsp;[% END %]</td>
465             <td>
466             [% UNLESS ( itemtype.notforloan ) %]
467               [% itemtype.rentalcharge | $Price %]
468             [% END %]
469             </td>
470             <td>
471             [% UNLESS ( itemtype.notforloan ) %]
472               [% itemtype.rentalcharge_daily | $Price %]
473             [% END %]
474             </td>
475             <td>
476             [% UNLESS ( itemtype.notforloan ) %]
477               [% itemtype.rentalcharge_hourly | $Price %]
478             [% END %]
479             </td>
480
481             <td>[% itemtype.defaultreplacecost | $Price %]</td>
482             <td>[% itemtype.processfee | $Price %]</td>
483             <td>[% itemtype.checkinmsg | html_line_break | $raw %]</td>
484             <td>
485                 [% IF itemtype.library_limits %]
486                     [% libraries_str = "" %]
487                     [% FOREACH library IN itemtype.library_limits %]
488                         [%- IF loop.first -%]
489                         [% libraries_str = library.branchname _ " (" _ library.branchcode _ ")" %]
490                         [% ELSE %]
491                         [% libraries_str = libraries_str _ "\n" _ library.branchname _ " (" _ library.branchcode _ ")" %]
492                         [% END %]
493                     [% END %]
494                     <span class="library_limitation" title="[% libraries_str | html %]">
495                         [% IF itemtype.library_limits.count > 1 %]
496                             [% itemtype.library_limits.count | html %] library limitations
497                         [% ELSE %]
498                             [% itemtype.library_limits.count | html %] library limitation
499                         [% END %]
500                 [% ELSE %]
501                     No limitation
502                 [% END %]
503             </td>
504             <td class="actions">
505               <a href="/cgi-bin/koha/admin/itemtypes.pl?op=add_form&amp;itemtype=[% itemtype.itemtype | uri %]" class="btn btn-default btn-xs"><i class="fa fa-pencil"></i> Edit</a>
506               <a href="/cgi-bin/koha/admin/itemtypes.pl?op=delete_confirm&amp;itemtype=[% itemtype.itemtype | uri %]" class="btn btn-default btn-xs"><i class="fa fa-trash"></i> Delete</a>
507             </td>
508           </tr>
509           [% END %]
510         </table>
511     [% ELSE %]
512         <div class="dialog message">There are no itemtypes defined</div>
513     [% END %]
514 [% END %]
515
516             </main>
517         </div> <!-- /.col-sm-10.col-sm-push-2 -->
518
519         <div class="col-sm-2 col-sm-pull-10">
520             <aside>
521                 [% INCLUDE 'admin-menu.inc' %]
522             </aside>
523         </div> <!-- /.col-sm-2.col-sm-pull-10 -->
524      </div> <!-- /.row -->
525
526 [% MACRO jsinclude BLOCK %]
527     [% Asset.js("js/admin-menu.js") | $raw %]
528     [% INCLUDE 'greybox.inc' %]
529     [% INCLUDE 'datatables.inc' %]
530     [% INCLUDE 'columns_settings.inc' %]
531     <script>
532          $(document).ready(function() {
533             $('#icons').tabs();
534             var columns_settings = [% TablesSettings.GetColumns( 'admin', 'itemtypes', 'table_item_type', 'json' ) | $raw %];
535             [% IF ( Koha.Preference('noItemTypeImages') && Koha.Preference('OpacNoItemTypeImages') ) %]
536                 columns_settings.shift(); // Remove item type image column from configuration
537             [% END %]
538
539             $(document).ready(function() {
540                 KohaTable("table_item_type", {
541                 "aaSorting": [[ 1, "asc" ]],
542                 "iDisplayLength": 10,
543                 "sPaginationType": "full"
544                 }, columns_settings);
545             });
546
547             $( "#itemtypeentry" ).validate({
548                 rules: {
549                     itemtype: { required: true },
550                     description: { required: true },
551                     rentalcharge: { number: true }
552                 }
553             });
554             $("#itemtype").on("blur",function(){
555                 toUC(this);
556             });
557             $(".library_limitation").tooltip();
558          });
559     </script>
560 [% END %]
561
562 [% INCLUDE 'intranet-bottom.inc' %]