Koha/koha-tmpl/intranet-tmpl/prog/en/includes/additional-fields-display.inc
Nick Clemens 695ce65132 Bug 15774: (follow-up) Add html filters
Signed-off-by: Séverine QUEUNE <severine.queune@bulac.fr>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>

Signed-off-by: Josef Moravec <josef.moravec@gmail.com>

Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
2019-03-07 20:37:05 +00:00

11 lines
388 B
HTML

[% USE AuthorisedValues %]
[% FOR field IN available %]
<li>
<span class="label"> [% field.name | html %]: </span>
[% IF field.authorised_value_category %]
[% AuthorisedValues.GetByCode( field.authorised_value_category, values.${field.name} ) | html %]
[% ELSE %]
[% values.${field.name} | html %]
[% END %]
</li>
[% END %]