Bug 25744: Replace <i> with <em> in staff interface
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / includes / additional-fields-display.inc
blob7b2bab777d35c40a097a19311efdc51141260761
1 [% USE AuthorisedValues %]
2 [% FOR field IN available %]
3     <li>
4         <span class="label"> [% field.name | html %]: </span>
5         [% IF field.authorised_value_category %]
6             [% AuthorisedValues.GetByCode( field.authorised_value_category, values.${field.name} ) | html %]
7         [% ELSE %]
8             [% values.${field.name} | html %]
9         [% END %]
10     </li>
11 [% END %]