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 data-sort="[% checkout.date_due | html %]">[% checkout.date_due | $KohaDates as_due_date => 1 %]</td> |
184 |
<td data-order="[% 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 data-sort="[% checkout.issuedate | html %]">[% checkout.issuedate | $KohaDates %]</td> |
188 |
<td data-order="[% 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 data-sort="[% new_due_dates.shift | html %]"> [% new_due_dates.shift | $KohaDates as_due_date => 1 %] </td> |
190 |
<td data-order="[% 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> |
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 data-sort="[% checkout.date_due | html %]">[% checkout.date_due | $KohaDates as_due_date => 1 %]</td> |
231 |
<td data-order="[% 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 data-sort="[% checkout.issuedate | html %]">[% checkout.issuedate | $KohaDates %]</td> |
235 |
<td data-order="[% 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 |
- |
|
|