Lines 3-8
Link Here
|
3 |
[% USE Koha %] |
3 |
[% USE Koha %] |
4 |
[% USE Branches %] |
4 |
[% USE Branches %] |
5 |
[% USE KohaDates %] |
5 |
[% USE KohaDates %] |
|
|
6 |
[% USE Price %] |
6 |
[% USE TablesSettings %] |
7 |
[% USE TablesSettings %] |
7 |
[% INCLUDE 'doc-head-open.inc' %] |
8 |
[% INCLUDE 'doc-head-open.inc' %] |
8 |
<title>Items › [% biblio.title | html %] [% IF ( biblio.author ) %] by [% biblio.author | html %][% END %] (Record #[% biblio.biblionumber | html %]) › Cataloging › Koha</title> |
9 |
<title>Items › [% biblio.title | html %] [% IF ( biblio.author ) %] by [% biblio.author | html %][% END %] (Record #[% biblio.biblionumber | html %]) › Cataloging › Koha</title> |
Lines 126-131
Link Here
|
126 |
[% SET attribute = header.attribute %] |
127 |
[% SET attribute = header.attribute %] |
127 |
[% IF header.attribute AND date_fields.grep('^' _ attribute _ '$').size %] |
128 |
[% IF header.attribute AND date_fields.grep('^' _ attribute _ '$').size %] |
128 |
<td data-order="[% item.$attribute | html %]">[% item.$attribute | $KohaDates %]</td> |
129 |
<td data-order="[% item.$attribute | html %]">[% item.$attribute | $KohaDates %]</td> |
|
|
130 |
[% ELSIF ( item.$attribute && ( attribute == 'price' || attribute == 'replacementprice' ) ) %] |
131 |
<td data-order="[% item.$attribute | html %]">[% item.$attribute | $Price %]</td> |
129 |
[% ELSE %] |
132 |
[% ELSE %] |
130 |
<td>[% item.$attribute | html %]</td> |
133 |
<td>[% item.$attribute | html %]</td> |
131 |
[% END %] |
134 |
[% END %] |
132 |
- |
|
|