Lines 182-211
Link Here
|
182 |
Due dates have been modified! |
182 |
Due dates have been modified! |
183 |
</div> |
183 |
</div> |
184 |
|
184 |
|
185 |
<table id="checkouts_result"> |
185 |
<div class="page-section"> |
186 |
<thead> |
186 |
<table id="checkouts_result"> |
187 |
<tr> |
187 |
<thead> |
188 |
<th>Due date</th> |
|
|
189 |
<th>Title</th> |
190 |
<th>Item type</th> |
191 |
<th>Home library</th> |
192 |
<th>Checked out on</th> |
193 |
<th>Checked out from</th> |
194 |
</tr> |
195 |
</thead> |
196 |
<tbody> |
197 |
[% FOR checkout IN checkouts %] |
198 |
<tr> |
188 |
<tr> |
199 |
<td>[% checkout.date_due | $KohaDates as_due_date => 1 %]</td> |
189 |
<th>Due date</th> |
200 |
<td><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% checkout.item.biblio.biblionumber | uri %]">[% checkout.item.biblio.title | html %]</a></td> |
190 |
<th>Title</th> |
201 |
<td>[% ItemTypes.GetDescription( checkout.item.effective_itemtype ) | html %]</td> |
191 |
<th>Item type</th> |
202 |
<td>[% checkout.item.home_branch.branchname | html %]</td> |
192 |
<th>Home library</th> |
203 |
<td>[% checkout.issuedate | $KohaDates %]</td> |
193 |
<th>Checked out on</th> |
204 |
<td>[% Branches.GetName( checkout.branchcode ) | html %]</td> |
194 |
<th>Checked out from</th> |
205 |
</tr> |
195 |
</tr> |
206 |
[% END %] |
196 |
</thead> |
207 |
</tbody> |
197 |
<tbody> |
208 |
</table> <!-- /#checkouts_result --> |
198 |
[% FOR checkout IN checkouts %] |
|
|
199 |
<tr> |
200 |
<td>[% checkout.date_due | $KohaDates as_due_date => 1 %]</td> |
201 |
<td><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% checkout.item.biblio.biblionumber | uri %]">[% checkout.item.biblio.title | html %]</a></td> |
202 |
<td>[% ItemTypes.GetDescription( checkout.item.effective_itemtype ) | html %]</td> |
203 |
<td>[% checkout.item.home_branch.branchname | html %]</td> |
204 |
<td>[% checkout.issuedate | $KohaDates %]</td> |
205 |
<td>[% Branches.GetName( checkout.branchcode ) | html %]</td> |
206 |
</tr> |
207 |
[% END %] |
208 |
</tbody> |
209 |
</table> <!-- /#checkouts_result --> |
210 |
</div> <!-- /.page-section --> |
209 |
[% END %] |
211 |
[% END %] |
210 |
</main> |
212 |
</main> |
211 |
</div> <!-- /.col-sm-10.col-sm-push-2 --> |
213 |
</div> <!-- /.col-sm-10.col-sm-push-2 --> |