Lines 399-405
$(document).ready(function() {
Link Here
|
399 |
<label>[% iteminformatio.subfield | html %] - [% iteminformatio.marc_lib | $raw %]</label> |
399 |
<label>[% iteminformatio.subfield | html %] - [% iteminformatio.marc_lib | $raw %]</label> |
400 |
[% END %] |
400 |
[% END %] |
401 |
[% IF ( iteminformatio.marc_value.type == 'select' ) %] |
401 |
[% IF ( iteminformatio.marc_value.type == 'select' ) %] |
402 |
<select name="field_value"> |
402 |
<select name="field_value" class="select2 input_marceditor"> |
403 |
[% FOREACH value IN iteminformatio.marc_value.values %] |
403 |
[% FOREACH value IN iteminformatio.marc_value.values %] |
404 |
[% IF ( value == iteminformatio.marc_value.default ) %] |
404 |
[% IF ( value == iteminformatio.marc_value.default ) %] |
405 |
<option value="[% value | html %]" selected="selected">[% iteminformatio.marc_value.labels.$value | html %]</option> |
405 |
<option value="[% value | html %]" selected="selected">[% iteminformatio.marc_value.labels.$value | html %]</option> |
406 |
- |
|
|