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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/offline_circ/list.tt (-2 / +12 lines)
Lines 86-92 Link Here
86
		                <tr class="oc-[% operation.action %]">
86
		                <tr class="oc-[% operation.action %]">
87
		                    <td><input type="checkbox" name="operationid" value="[% operation.operationid %]" /></td>
87
		                    <td><input type="checkbox" name="operationid" value="[% operation.operationid %]" /></td>
88
			                <td>[% operation.timestamp %]</td>
88
			                <td>[% operation.timestamp %]</td>
89
			                <td>[% operation.action %]</td>
89
                            <td>
90
                                [% SWITCH ( operation.action ) -%]
91
                                    [%   CASE "issue" -%]
92
                                        Check out
93
                                    [%   CASE "return" -%]
94
                                        Check in
95
                                    [%   CASE "payment" -%]
96
                                        Payment
97
                                    [%   CASE # default case -%]
98
                                        [% operation.action %]
99
                                [% END -%]
100
                            </td>
90
			                <td>
101
			                <td>
91
			                    [% IF ( biblionumber ) %]
102
			                    [% IF ( biblionumber ) %]
92
			                        <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% operation.biblionumber %]" title="[% operation.bibliotitle %]">[% operation.barcode %]</a>
103
			                        <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% operation.biblionumber %]" title="[% operation.bibliotitle %]">[% operation.barcode %]</a>
93
- 

Return to bug 15676