View | Details | Raw Unified | Return to bug 20896
Collapse All | Expand All

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

Return to bug 20896