Lines 352-361
Link Here
|
352 |
<th>Home library</th> |
352 |
<th>Home library</th> |
353 |
[% IF ( itemdata_ccode ) %]<th>Collection</th>[% END %] |
353 |
[% IF ( itemdata_ccode ) %]<th>Collection</th>[% END %] |
354 |
<th>Call number</th> |
354 |
<th>Call number</th> |
|
|
355 |
[% IF ( volinfo ) %]<th>Serial enumeration / chronology</th>[% END %] |
355 |
<th>Status</th> |
356 |
<th>Status</th> |
356 |
<th>Last seen</th> |
357 |
<th>Last seen</th> |
357 |
<th>Barcode</th> |
358 |
<th>Barcode</th> |
358 |
[% IF ( volinfo ) %]<th>Serial enumeration / chronology</th>[% END %] |
|
|
359 |
[% IF ( itemdata_uri ) %]<th>URL</th>[% END %] |
359 |
[% IF ( itemdata_uri ) %]<th>URL</th>[% END %] |
360 |
[% IF ( itemdata_copynumber ) %]<th>Copy number</th>[% END %] |
360 |
[% IF ( itemdata_copynumber ) %]<th>Copy number</th>[% END %] |
361 |
[% IF ( itemdata_stocknumber ) %]<th>Inventory number</th>[% END %] |
361 |
[% IF ( itemdata_stocknumber ) %]<th>Inventory number</th>[% END %] |
Lines 389-394
Link Here
|
389 |
<td class="homebranch">[% Branches.GetName(item.homebranch) | html %]<span class="shelvingloc">[% item.location | html %]</span> </td> |
389 |
<td class="homebranch">[% Branches.GetName(item.homebranch) | html %]<span class="shelvingloc">[% item.location | html %]</span> </td> |
390 |
[% IF ( itemdata_ccode ) %]<td>[% item.ccode | html %]</td>[% END %] |
390 |
[% IF ( itemdata_ccode ) %]<td>[% item.ccode | html %]</td>[% END %] |
391 |
<td class="itemcallnumber">[% IF ( item.itemcallnumber ) %] [% item.itemcallnumber | html %][% END %]</td> |
391 |
<td class="itemcallnumber">[% IF ( item.itemcallnumber ) %] [% item.itemcallnumber | html %][% END %]</td> |
|
|
392 |
[% IF ( volinfo ) %] |
393 |
<td class="enumchron"> |
394 |
[% IF ( itemdata_enumchron ) %] |
395 |
[% IF item.enumchron && item.serialseq %] |
396 |
<span class="enum">[% item.enumchron | html %]</span> |
397 |
[% IF ( item.serialseq && item.enumchron!=item.serialseq ) %] |
398 |
<span class="sep"> -- </span> |
399 |
<span class="serialseq">[% item.serialseq | html %]</span> |
400 |
[% END %] |
401 |
[% ELSIF item.enumchron %] |
402 |
<span class="enum">[% item.enumchron | html %]</span> |
403 |
[% ELSIF item.serialseq %] |
404 |
<span class="serialseq">[% item.serialseq | html %]</span> |
405 |
[% END %] |
406 |
[% IF ( item.publisheddate ) %] |
407 |
<span class="pubdate">([% item.publisheddate | $KohaDates %])</span> |
408 |
[% END %] |
409 |
[% END %] |
410 |
</td> |
411 |
[% END %] |
392 |
<td class="status"> |
412 |
<td class="status"> |
393 |
|
413 |
|
394 |
[% IF item.CheckedOutFor %] |
414 |
[% IF item.CheckedOutFor %] |
Lines 476-501
Link Here
|
476 |
</td> |
496 |
</td> |
477 |
<td class="datelastseen">[% item.datelastseen | $KohaDates %]</td> |
497 |
<td class="datelastseen">[% item.datelastseen | $KohaDates %]</td> |
478 |
<td><a href="/cgi-bin/koha/catalogue/moredetail.pl?type=[% item.type | html %]&itemnumber=[% item.itemnumber | html %]&biblionumber=[% item.biblionumber | html %]&bi=[% item.biblioitemnumber | html %]#item[% item.itemnumber | html %]">[% item.barcode | html %]</a></td> |
498 |
<td><a href="/cgi-bin/koha/catalogue/moredetail.pl?type=[% item.type | html %]&itemnumber=[% item.itemnumber | html %]&biblionumber=[% item.biblionumber | html %]&bi=[% item.biblioitemnumber | html %]#item[% item.itemnumber | html %]">[% item.barcode | html %]</a></td> |
479 |
[% IF ( volinfo ) %] |
|
|
480 |
<td class="enumchron"> |
481 |
[% IF ( itemdata_enumchron ) %] |
482 |
[% IF item.enumchron && item.serialseq %] |
483 |
<span class="enum">[% item.enumchron | html %]</span> |
484 |
[% IF ( item.serialseq && item.enumchron!=item.serialseq ) %] |
485 |
<span class="sep"> -- </span> |
486 |
<span class="serialseq">[% item.serialseq | html %]</span> |
487 |
[% END %] |
488 |
[% ELSIF item.enumchron %] |
489 |
<span class="enum">[% item.enumchron | html %]</span> |
490 |
[% ELSIF item.serialseq %] |
491 |
<span class="serialseq">[% item.serialseq | html %]</span> |
492 |
[% END %] |
493 |
[% IF ( item.publisheddate ) %] |
494 |
<span class="pubdate">([% item.publisheddate | $KohaDates %])</span> |
495 |
[% END %] |
496 |
[% END %] |
497 |
</td> |
498 |
[% END %] |
499 |
[% IF ( itemdata_uri ) %] |
499 |
[% IF ( itemdata_uri ) %] |
500 |
<td class="uri"><a href="[% item.uri | html %]">[% item.uri | html %]</a></td> |
500 |
<td class="uri"><a href="[% item.uri | html %]">[% item.uri | html %]</a></td> |
501 |
[% END %] |
501 |
[% END %] |
502 |
- |
|
|