|
Lines 97-102
Link Here
|
| 97 |
|
97 |
|
| 98 |
[% BLOCK subfields_for_item %] |
98 |
[% BLOCK subfields_for_item %] |
| 99 |
[% USE HTML %] |
99 |
[% USE HTML %] |
|
|
100 |
[% USE I18N %] |
| 100 |
<ol> |
101 |
<ol> |
| 101 |
[% FOREACH subfield IN subfields %] |
102 |
[% FOREACH subfield IN subfields %] |
| 102 |
[% IF subfield.kohafield == 'items.more_subfields_xml' %] |
103 |
[% IF subfield.kohafield == 'items.more_subfields_xml' %] |
|
Lines 145-153
Link Here
|
| 145 |
<option value="[%- aval | html -%]" selected="selected" [% attributes | $raw %]>[%- mv.labels.$aval | html -%]</option> |
146 |
<option value="[%- aval | html -%]" selected="selected" [% attributes | $raw %]>[%- mv.labels.$aval | html -%]</option> |
| 146 |
[% ELSE %] |
147 |
[% ELSE %] |
| 147 |
[% IF subfield.IS_LOST_AV && Koha.Preference("ClaimReturnedLostValue") && aval == Koha.Preference("ClaimReturnedLostValue") %] |
148 |
[% IF subfield.IS_LOST_AV && Koha.Preference("ClaimReturnedLostValue") && aval == Koha.Preference("ClaimReturnedLostValue") %] |
| 148 |
<option disabled="disabled" value="[%- aval | html -%]" title="Return claims must be processed from the patron details page" [% attributes | $raw %]>[%- mv.labels.$aval | html -%]</option> |
149 |
<option disabled="disabled" value="[%- aval | html -%]" title="[% I18N.t('Return claims must be processed from the patron details page') | html %]" [% attributes | $raw %]>[%- mv.labels.$aval | html -%]</option> |
| 149 |
[% ELSIF subfield.IS_LOST_AV && Koha.Preference("BundleLostValue") && aval == Koha.Preference("BundleLostValue") %] |
150 |
[% ELSIF subfield.IS_LOST_AV && Koha.Preference("BundleLostValue") && aval == Koha.Preference("BundleLostValue") %] |
| 150 |
<option disabled="disabled" value="[%- aval | html -%]" title="Bundle losses are set at checkin automatically" [% attributes | $raw %]>[%- mv.labels.$aval | html -%]</option> |
151 |
<option disabled="disabled" value="[%- aval | html -%]" title="[ % I18N.t('Bundle losses are set at checkin automatically') | html %]" [% attributes | $raw %]>[%- mv.labels.$aval | html -%]</option> |
| 151 |
[% ELSE %] |
152 |
[% ELSE %] |
| 152 |
<option value="[%- aval | html -%]" [% attributes | $raw %]>[%- mv.labels.$aval | html -%]</option> |
153 |
<option value="[%- aval | html -%]" [% attributes | $raw %]>[%- mv.labels.$aval | html -%]</option> |
| 153 |
[% END %] |
154 |
[% END %] |
| 154 |
- |
|
|