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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_extend_due_dates.tt (-3 / +2 lines)
Lines 228-238 Link Here
228
                <tbody>
228
                <tbody>
229
                    [% FOR checkout IN checkouts %]
229
                    [% FOR checkout IN checkouts %]
230
                        <tr>
230
                        <tr>
231
                            <td>[% checkout.date_due | $KohaDates as_due_date => 1 %]</td>
231
                            <td data-sort="[% checkout.date_due | html %]">[% checkout.date_due | $KohaDates as_due_date => 1 %]</td>
232
                            <td><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% checkout.item.biblio.biblionumber | uri %]">[% checkout.item.biblio.title | html %]</a></td>
232
                            <td><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% checkout.item.biblio.biblionumber | uri %]">[% checkout.item.biblio.title | html %]</a></td>
233
                            <td>[% ItemTypes.GetDescription( checkout.item.effective_itemtype ) | html %]</td>
233
                            <td>[% ItemTypes.GetDescription( checkout.item.effective_itemtype ) | html %]</td>
234
                            <td>[% checkout.item.home_branch.branchname | html %]</td>
234
                            <td>[% checkout.item.home_branch.branchname | html %]</td>
235
                            <td>[% checkout.issuedate | $KohaDates %]</td>
235
                            <td data-sort="[% checkout.issuedate | html %]">[% checkout.issuedate | $KohaDates %]</td>
236
                            <td>[% Branches.GetName( checkout.branchcode ) | html %]</td>
236
                            <td>[% Branches.GetName( checkout.branchcode ) | html %]</td>
237
                        </tr>
237
                        </tr>
238
                    [% END %]
238
                    [% END %]
239
- 

Return to bug 39081