Lines 311-317
Link Here
|
311 |
</div> |
311 |
</div> |
312 |
[% END %] |
312 |
[% END %] |
313 |
|
313 |
|
314 |
<form action="/cgi-bin/koha/acqui/addorder.pl" method="post" class="validated noEnterSubmit" id="Aform" onsubmit="return Check(this);"> |
314 |
<form action="/cgi-bin/koha/acqui/addorder.pl" method="post" class="validated noEnterSubmit marc_editor" id="Aform" onsubmit="return Check(this);"> |
315 |
[% INCLUDE 'csrf-token.inc' %] |
315 |
[% INCLUDE 'csrf-token.inc' %] |
316 |
|
316 |
|
317 |
<fieldset class="rows"> |
317 |
<fieldset class="rows"> |
Lines 811-817
Link Here
|
811 |
<input type="text" id="[%- mv.id | html -%]" name="bib_field_value" value="[%- mv.value | html -%]" class="input_marceditor" tabindex="1" size="[%- mv.size | html -%]" maxlength="[%- mv.maxlength | html -%]" /> |
811 |
<input type="text" id="[%- mv.id | html -%]" name="bib_field_value" value="[%- mv.value | html -%]" class="input_marceditor" tabindex="1" size="[%- mv.size | html -%]" maxlength="[%- mv.maxlength | html -%]" /> |
812 |
[% END %] |
812 |
[% END %] |
813 |
[% ELSIF ( mv.type == 'text_complex' ) %] |
813 |
[% ELSIF ( mv.type == 'text_complex' ) %] |
814 |
<input type="text" id="[%- mv.id | html -%]" name="bib_field_value" value="[%- mv.value | html -%]" class="input_marceditor framework_plugin" tabindex="1" size="[%- mv.size | html -%]" maxlength="[%- mv.maxlength | html -%]" /> |
814 |
<input type="text" id="[%- mv.id | html -%]" name="bib_field_value" value="[%- mv.value | html -%]" class="input_marceditor framework_plugin" tabindex="1" size="[%- mv.size | html -%]" maxlength="[%- mv.maxlength | html -%]" data-plugin="[% mv.plugin | html %]" /> |
815 |
[% mv.javascript | $raw %] |
815 |
[% mv.javascript | $raw %] |
816 |
[% ELSIF ( mv.type == 'hidden' ) %] |
816 |
[% ELSIF ( mv.type == 'hidden' ) %] |
817 |
<input tabindex="1" type="hidden" id="[%- mv.id | html -%]" name="bib_field_value" size="[%- mv.size | html -%]" maxlength="[%- mv.maxlength | html -%]" value="[%- mv.value | html -%]" /> |
817 |
<input tabindex="1" type="hidden" id="[%- mv.id | html -%]" name="bib_field_value" size="[%- mv.size | html -%]" maxlength="[%- mv.maxlength | html -%]" value="[%- mv.value | html -%]" /> |
Lines 835-843
Link Here
|
835 |
<span class="buttonDot tag_editor disabled" tabindex="-1" title="Field autofilled by plugin"></span> |
835 |
<span class="buttonDot tag_editor disabled" tabindex="-1" title="Field autofilled by plugin"></span> |
836 |
[% ELSE %] |
836 |
[% ELSE %] |
837 |
[% IF mv.plugin == "upload.pl" %] |
837 |
[% IF mv.plugin == "upload.pl" %] |
838 |
<a href="#" id="buttonDot_[% mv.id | html %]" class="tag_editor upload framework_plugin" tabindex="1"><i class="fa fa-upload" aria-hidden="true"></i> Upload</a> |
838 |
<a href="#" id="buttonDot_[% mv.id | html %]" class="tag_editor upload framework_plugin" tabindex="1" data-plugin="[% mv.plugin | html %]"><i class="fa fa-upload" aria-hidden="true"></i> Upload</a> |
839 |
[% ELSE %] |
839 |
[% ELSE %] |
840 |
<a href="#" id="buttonDot_[% mv.id | html %]" class="buttonDot tag_editor framework_plugin" tabindex="1" title="Tag editor">Tag editor</a> |
840 |
<a href="#" id="buttonDot_[% mv.id | html %]" class="buttonDot tag_editor framework_plugin" tabindex="1" title="Tag editor" data-plugin="[% mv.plugin | html %]">Tag editor</a> |
841 |
[% END %] |
841 |
[% END %] |
842 |
[% END %] |
842 |
[% END %] |
843 |
[% END %] |
843 |
[% END %] |
844 |
- |
|
|