Lines 203-216
Sorry, This Self-Checkout Station has lost authentication. Please contact the a
Link Here
|
203 |
[% FOREACH ISSUE IN ISSUES %] |
203 |
[% FOREACH ISSUE IN ISSUES %] |
204 |
[% UNLESS ( loop.odd ) %]<tr class="highlight">[% ELSE %]<tr>[% END %] |
204 |
[% UNLESS ( loop.odd ) %]<tr class="highlight">[% ELSE %]<tr>[% END %] |
205 |
<!-- FIXME: yet another jacket image breakpoint --> |
205 |
<!-- FIXME: yet another jacket image breakpoint --> |
206 |
<td>[% IF ( ISSUE.amazonimages ) %] [% IF ( ISSUE.isbn ) %]<a href="/cgi-bin/koha/opac-detail.pl?bib=[% ISSUE.biblionumber |url %]"><img src="http://images.amazon.com/images/P/[% ISSUE.isbn %].01.THUMBZZZ.jpg" alt="Book Cover Image" class="thumbnail" /></a>[% END %] [% END %][% UNLESS ( ISSUE.noitemlinks ) %]<a href="/cgi-bin/koha/opac-detail.pl?bib=[% ISSUE.biblionumber %]">[% ISSUE.title |html %]</a>[% ELSE %]<strong>[% ISSUE.title |html %]</strong>[% END %]<span class="item-details"> |
206 |
<td>[% UNLESS ( ISSUE.noitemlinks ) %]<a href="/cgi-bin/koha/opac-detail.pl?bib=[% ISSUE.biblionumber %]">[% ISSUE.title |html %]</a>[% ELSE %]<strong>[% ISSUE.title |html %]</strong>[% END %]<span class="item-details"> |
207 |
[% ISSUE.author %]</span> ([% ISSUE.barcode %])</td> |
207 |
[% ISSUE.author %]</span> ([% ISSUE.barcode %])</td> |
208 |
<td>[% ISSUE.itemcallnumber %]</td> |
208 |
<td>[% ISSUE.itemcallnumber %]</td> |
209 |
[% IF ( ISSUE.overdue ) %]<td class="overdue">[% ISSUE.date_due_display %]</td>[% ELSE %]<td>[% ISSUE.date_due_display %]</td>[% END %] |
209 |
[% IF ( ISSUE.overdue ) %]<td class="overdue">[% ISSUE.date_due_display %]</td>[% ELSE %]<td>[% ISSUE.date_due_display %]</td>[% END %] |
210 |
<td> |
210 |
<td> |
211 |
<form action="/cgi-bin/koha/sco/sco-main.pl" method="post"> |
211 |
<form action="/cgi-bin/koha/sco/sco-main.pl" method="post"> |
212 |
<input type="hidden" name="op" value="checkout" /> |
212 |
<input type="hidden" name="op" value="checkout" /> |
213 |
<input type="hidden" name="patronid" value="[% ISSUE.patronid %]" /> |
213 |
<input type="hidden" name="patronid" value="[% patronid %]" /> |
214 |
<input type="hidden" name="barcode" value="[% ISSUE.barcode %]" /> |
214 |
<input type="hidden" name="barcode" value="[% ISSUE.barcode %]" /> |
215 |
<input type="hidden" name="confirmed" value="" /> |
215 |
<input type="hidden" name="confirmed" value="" /> |
216 |
[% IF ( ISSUE.norenew ) %] |
216 |
[% IF ( ISSUE.norenew ) %] |
Lines 225-231
Sorry, This Self-Checkout Station has lost authentication. Please contact the a
Link Here
|
225 |
[% END %] |
225 |
[% END %] |
226 |
</form> |
226 |
</form> |
227 |
</td> |
227 |
</td> |
228 |
[% UNLESS ( ISSUE.nofines ) %]<td>[% IF ( ISSUE.charges ) %]Yes[% ELSE %]No[% END %]</td>[% END %]</tr> |
228 |
[% UNLESS ( nofines ) %]<td>[% IF ( ISSUE.charges ) %]Yes[% ELSE %]No[% END %]</td>[% END %]</tr> |
229 |
[% END %] |
229 |
[% END %] |
230 |
</tbody> |
230 |
</tbody> |
231 |
|
231 |
|
232 |
- |
|
|