View | Details | Raw Unified | Return to bug 6426
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/categorie.tt (-20 / +19 lines)
Lines 9-15 Link Here
9
<script type="text/javascript" id="js">$(document).ready(function() {
9
<script type="text/javascript" id="js">$(document).ready(function() {
10
	$("#table_categorie").tablesorter({
10
	$("#table_categorie").tablesorter({
11
		sortList: [[0,0]],
11
		sortList: [[0,0]],
12
		headers: { 10: { sorter: false}}
12
		widgets: ['zebra'],
13
		headers: { 11: { sorter: false}}
13
	}).tablesorterPager({container: $("#pagertable_categorie"),positionFixed: false,size: 20});
14
	}).tablesorterPager({container: $("#pagertable_categorie"),positionFixed: false,size: 20});
14
}); </script>
15
}); </script>
15
[% INCLUDE 'calendar.inc' %]
16
[% INCLUDE 'calendar.inc' %]
Lines 300-310 Confirm Deletion of Category [% categorycode |html %][% END %]</legend> Link Here
300
			<th scope="col" colspan="2">&nbsp; </th>
301
			<th scope="col" colspan="2">&nbsp; </th>
301
		</thead>
302
		</thead>
302
		[% FOREACH loo IN loop %]
303
		[% FOREACH loo IN loop %]
303
		[% UNLESS ( loop.odd ) %]
304
			<tr class="highlight">
305
		[% ELSE %]
306
			<tr>
304
			<tr>
307
		[% END %]
308
                        <td>[% loo.categorycode |html %]</td>
305
                        <td>[% loo.categorycode |html %]</td>
309
                        <td>
306
                        <td>
310
                            <a href="[% loo.script_name %]?op=add_form&amp;categorycode=[% loo.categorycode |url %]">[% loo.description |html %]</a>
307
                            <a href="[% loo.script_name %]?op=add_form&amp;categorycode=[% loo.categorycode |url %]">[% loo.description |html %]</a>
Lines 332-353 Confirm Deletion of Category [% categorycode |html %][% END %]</legend> Link Here
332
                        <td>[% IF ( loo.hidelostitems ) %]Hidden[% ELSE %]Shown[% END %]</td>
329
                        <td>[% IF ( loo.hidelostitems ) %]Hidden[% ELSE %]Shown[% END %]</td>
333
                        <td>[% loo.reservefee %]</td>
330
                        <td>[% loo.reservefee %]</td>
334
                        [% IF ( EnhancedMessagingPreferences ) %]
331
                        [% IF ( EnhancedMessagingPreferences ) %]
335
                        <td>
332
                        <td style="white-space: nowrap; font-size:80%;">
336
                            [% IF ( loo.messaging_prefs ) %]
333
                            [% IF ( loo.messaging_prefs ) %]
337
                                [% IF ( messaging_preference.Item_Due ) %]Item Due
334
                              [% FOREACH prefs IN loo.messaging_prefs %]
338
                                [% ELSIF ( messaging_preference.Advance_Notice ) %]Advance Notice
335
	                                [% FOREACH transport IN prefs.transports %]
339
                                [% ELSIF ( messaging_preference.Upcoming_Events ) %]Upcoming Events
336
                                         [% IF ( transport.transport ) %]
340
                                [% ELSIF ( messaging_preference.Hold_Filled ) %]Hold Filled
337
			                                [% IF ( prefs.Item_Due ) %]Item Due
341
                                [% ELSIF ( messaging_preference.Item_Check_in ) %]Item Check-in
338
			                                [% ELSIF ( prefs.Advance_Notice ) %]Advance Notice
342
                                [% ELSIF ( messaging_preference.Item_Checkout ) %]Item Checkout
339
			                                [% ELSIF ( prefs.Upcoming_Events ) %]Upcoming Events
343
                                [% ELSE %]Unknown 
340
			                                [% ELSIF ( prefs.Hold_Filled ) %]Hold Filled
344
                                [% END %] :
341
			                                [% ELSIF ( prefs.Item_Check_in ) %]Item Check-in
345
                                [% FOREACH transport IN messaging_pref.transports %]
342
			                                [% ELSIF ( prefs.Item_Checkout ) %]Item Checkout
346
                                    [% transport.transport %]
343
			                                [% ELSE %]Unknown
347
                                [% END %]                                
344
			                                [% END %]:
348
                                <br />
345
				                            <strong>[% transport.transport %]</strong><br />
346
				                         [% ELSE %]None<br />[% END %]
347
	                                [% END %]
348
                                [% END %]
349
                            [% ELSE %]
349
                            [% ELSE %]
350
                                none
350
                                None
351
                            [% END %]
351
                            [% END %]
352
                        </td>
352
                        </td>
353
                        [% END %]
353
                        [% END %]
354
- 

Return to bug 6426