|
Lines 197-208
$(document).ready(function(){
Link Here
|
| 197 |
[% ite.subfield %] - [% ite.marc_lib %] |
197 |
[% ite.subfield %] - [% ite.marc_lib %] |
| 198 |
</label> |
198 |
</label> |
| 199 |
|
199 |
|
| 200 |
[% UNLESS ( ite.mandatory ) %] |
|
|
| 201 |
<input type="checkbox" id="row[% ite.tag %][% ite.subfield %][% ite.random %]" title="Check to delete subfield [% ite.subfield %]" name="disable_input" value="[% ite.subfield %]" /> |
| 202 |
[% ELSE %] |
| 203 |
<span class="required">Required</span> |
| 204 |
[% END %] |
| 205 |
|
| 206 |
[% SET mv = ite.marc_value %] |
200 |
[% SET mv = ite.marc_value %] |
| 207 |
[% IF ( mv.type == 'select' ) -%] |
201 |
[% IF ( mv.type == 'select' ) -%] |
| 208 |
<select name="[%- mv.name -%]" id="[%- mv.id -%]" size="1" tabindex="1" class="input_marceditor"> |
202 |
<select name="[%- mv.name -%]" id="[%- mv.id -%]" size="1" tabindex="1" class="input_marceditor"> |
|
Lines 233-238
$(document).ready(function(){
Link Here
|
| 233 |
<textarea tabindex="1" id="[%- mv.id -%]" name="field_value" class="input_marceditor" size="50" maxlength="255">[%- mv.value -%]"</textarea> |
227 |
<textarea tabindex="1" id="[%- mv.id -%]" name="field_value" class="input_marceditor" size="50" maxlength="255">[%- mv.value -%]"</textarea> |
| 234 |
[%- END -%] |
228 |
[%- END -%] |
| 235 |
|
229 |
|
|
|
230 |
[% UNLESS ( ite.mandatory ) %] |
| 231 |
<input type="checkbox" id="row[% ite.tag %][% ite.subfield %][% ite.random %]" title="Check to delete subfield [% ite.subfield %]" name="disable_input" value="[% ite.subfield %]" /> |
| 232 |
[% ELSE %] |
| 233 |
<span class="required">Required</span> |
| 234 |
[% END %] |
| 235 |
|
| 236 |
<input type="hidden" name="tag" value="[% ite.tag %]" /> |
236 |
<input type="hidden" name="tag" value="[% ite.tag %]" /> |
| 237 |
<input type="hidden" name="subfield" value="[% ite.subfield %]" /> |
237 |
<input type="hidden" name="subfield" value="[% ite.subfield %]" /> |
| 238 |
<input type="hidden" name="mandatory" value="[% ite.mandatory %]" /> |
238 |
<input type="hidden" name="mandatory" value="[% ite.mandatory %]" /> |
| 239 |
- |
|
|