Lines 21-26
Link Here
|
21 |
[% IF ( showpriority ) %] |
21 |
[% IF ( showpriority ) %] |
22 |
<th class="psort">Priority</th> |
22 |
<th class="psort">Priority</th> |
23 |
[% END %] |
23 |
[% END %] |
|
|
24 |
[% IF Koha.Preference('OpacHoldNotes') %] |
25 |
<th>Notes</th> |
26 |
[% END %] |
24 |
<th>Status</th> |
27 |
<th>Status</th> |
25 |
[% IF SuspendHoldsOpac and ! onlyinfo %] |
28 |
[% IF SuspendHoldsOpac and ! onlyinfo %] |
26 |
<th class="nosort" >Suspend</th> |
29 |
<th class="nosort" >Suspend</th> |
Lines 126-131
Link Here
|
126 |
[% HOLD.priority | html %] |
129 |
[% HOLD.priority | html %] |
127 |
</td> |
130 |
</td> |
128 |
[% END %] |
131 |
[% END %] |
|
|
132 |
[% IF Koha.Preference('OpacHoldNotes') %] |
133 |
<td>[% HOLD.reservenotes | html | html_line_break %]</td> |
134 |
[% END %] |
129 |
<td class="status"> |
135 |
<td class="status"> |
130 |
<span class="tdlabel">Status:</span> |
136 |
<span class="tdlabel">Status:</span> |
131 |
[% IF ( HOLD.is_waiting ) %] |
137 |
[% IF ( HOLD.is_waiting ) %] |
132 |
- |
|
|