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 (-5 / +4 lines)
Lines 169-175 Link Here
169
                            <tr>
169
                            <tr>
170
                                <th>&nbsp;</th>
170
                                <th>&nbsp;</th>
171
                                <th>Due date</th>
171
                                <th>Due date</th>
172
                                <th>Title</th>
172
                                <th class="anti-the">Title</th>
173
                                <th>Item type</th>
173
                                <th>Item type</th>
174
                                <th>Home library</th>
174
                                <th>Home library</th>
175
                                <th>Checked out on</th>
175
                                <th>Checked out on</th>
Lines 181-193 Link Here
181
                            [% FOR checkout IN checkouts %]
181
                            [% FOR checkout IN checkouts %]
182
                                <tr>
182
                                <tr>
183
                                    <td><input type="checkbox" name="issue_id" value="[% checkout.issue_id | html %]" /></td>
183
                                    <td><input type="checkbox" name="issue_id" value="[% checkout.issue_id | html %]" /></td>
184
                                    <td>[% checkout.date_due | $KohaDates as_due_date => 1 %]</td>
184
                                    <td data-sort="[% checkout.date_due | html %]">[% checkout.date_due | $KohaDates as_due_date => 1 %]</td>
185
                                    <td><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% checkout.item.biblio.biblionumber | uri %]">[% checkout.item.biblio.title | html %]</a></td>
185
                                    <td><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% checkout.item.biblio.biblionumber | uri %]">[% checkout.item.biblio.title | html %]</a></td>
186
                                    <td>[% ItemTypes.GetDescription( checkout.item.effective_itemtype ) | html %]</td>
186
                                    <td>[% ItemTypes.GetDescription( checkout.item.effective_itemtype ) | html %]</td>
187
                                    <td>[% checkout.item.home_branch.branchname | html %]</td>
187
                                    <td>[% checkout.item.home_branch.branchname | html %]</td>
188
                                    <td>[% checkout.issuedate | $KohaDates %]</td>
188
                                    <td data-sort="[% checkout.issuedate | html %]">[% checkout.issuedate | $KohaDates %]</td>
189
                                    <td>[% Branches.GetName( checkout.branchcode ) | html %]</td>
189
                                    <td>[% Branches.GetName( checkout.branchcode ) | html %]</td>
190
                                    <td> [% new_due_dates.shift | $KohaDates as_due_date => 1 %] </td>
190
                                    <td data-sort="[% new_due_dates.shift | html %]"> [% new_due_dates.shift | $KohaDates as_due_date => 1 %] </td>
191
                                </tr>
191
                                </tr>
192
                            [% END %]
192
                            [% END %]
193
                        </tbody>
193
                        </tbody>
194
- 

Return to bug 39081