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

Return to bug 39081