|
Lines 50-55
Link Here
|
| 50 |
<thead> |
50 |
<thead> |
| 51 |
<tr> |
51 |
<tr> |
| 52 |
<th class="anti-the">Title</th> |
52 |
<th class="anti-the">Title</th> |
|
|
53 |
<th>Author</th> |
| 53 |
<th>Item type</th> |
54 |
<th>Item type</th> |
| 54 |
<th>Location</th> |
55 |
<th>Location</th> |
| 55 |
<th>Collection</th> |
56 |
<th>Collection</th> |
|
Lines 58-63
Link Here
|
| 58 |
<th>Status</th> |
59 |
<th>Status</th> |
| 59 |
<th class="title-string">Date due</th> |
60 |
<th class="title-string">Date due</th> |
| 60 |
<th>Notes</th> |
61 |
<th>Notes</th> |
|
|
62 |
<th>Link</th> |
| 61 |
</tr> |
63 |
</tr> |
| 62 |
</thead> |
64 |
</thead> |
| 63 |
|
65 |
|
|
Lines 65-70
Link Here
|
| 65 |
[% FOREACH cr IN course_reserves %] |
67 |
[% FOREACH cr IN course_reserves %] |
| 66 |
<tr> |
68 |
<tr> |
| 67 |
<td><a href="opac-detail.pl?biblionumber=[% cr.item.biblionumber %]">[% cr.item.title %]</a></td> |
69 |
<td><a href="opac-detail.pl?biblionumber=[% cr.item.biblionumber %]">[% cr.item.title %]</a></td> |
|
|
70 |
<td>[% cr.item.author %]</td> |
| 68 |
<td>[% ItemTypes.GetDescription( cr.item.itype ) %]</td> |
71 |
<td>[% ItemTypes.GetDescription( cr.item.itype ) %]</td> |
| 69 |
<td>[% Branches.GetName( cr.item.holdingbranch ) %] <br/> <i>[% AuthorisedValues.GetByCode( 'LOC', cr.item.location ) %]</i></td> |
72 |
<td>[% Branches.GetName( cr.item.holdingbranch ) %] <br/> <i>[% AuthorisedValues.GetByCode( 'LOC', cr.item.location ) %]</i></td> |
| 70 |
<td>[% AuthorisedValues.GetByCode( 'CCODE', cr.item.ccode ) %]</td> |
73 |
<td>[% AuthorisedValues.GetByCode( 'CCODE', cr.item.ccode ) %]</td> |
|
Lines 73-78
Link Here
|
| 73 |
<td>[% INCLUDE 'item-status.inc' item=cr.item issue=cr.issue %]</td> |
76 |
<td>[% INCLUDE 'item-status.inc' item=cr.item issue=cr.issue %]</td> |
| 74 |
<td><span title="[% cr.issue.date_due %]">[% cr.issue.date_due | $KohaDates as_due_date => 1 %]</span></td> |
77 |
<td><span title="[% cr.issue.date_due %]">[% cr.issue.date_due | $KohaDates as_due_date => 1 %]</span></td> |
| 75 |
<td>[% cr.public_note %]</td> |
78 |
<td>[% cr.public_note %]</td> |
|
|
79 |
<td>[% IF (cr.item.uri) %] |
| 80 |
<a href="[% cr.item.uri %]">Item URI</a> |
| 81 |
[% ELSIF (cr.item.url) %] |
| 82 |
<a href="[% cr.item.url %]">Record URL</a> |
| 83 |
[% END %] |
| 84 |
</td> |
| 76 |
</tr> |
85 |
</tr> |
| 77 |
[% END %] |
86 |
[% END %] |
| 78 |
</tbody> |
87 |
</tbody> |
| 79 |
- |
|
|