|
Lines 315-321
Link Here
|
| 315 |
</div> |
315 |
</div> |
| 316 |
[% END %] |
316 |
[% END %] |
| 317 |
|
317 |
|
| 318 |
<form action="/cgi-bin/koha/acqui/addorder.pl" method="post" class="validated noEnterSubmit" id="Aform" onsubmit="return Check(this);" > |
318 |
<form action="/cgi-bin/koha/acqui/addorder.pl" method="post" class="validated noEnterSubmit marc_editor" id="Aform" onsubmit="return Check(this);" > |
| 319 |
[% INCLUDE 'csrf-token.inc' %] |
319 |
[% INCLUDE 'csrf-token.inc' %] |
| 320 |
|
320 |
|
| 321 |
<fieldset class="rows"> |
321 |
<fieldset class="rows"> |
|
Lines 822-828
Link Here
|
| 822 |
[% END %] |
822 |
[% END %] |
| 823 |
|
823 |
|
| 824 |
[% ELSIF ( mv.type == 'text_complex' ) %] |
824 |
[% ELSIF ( mv.type == 'text_complex' ) %] |
| 825 |
<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 -%]" /> |
825 |
<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 %]" /> |
| 826 |
[% mv.javascript | $raw %] |
826 |
[% mv.javascript | $raw %] |
| 827 |
[% ELSIF ( mv.type == 'hidden' ) %] |
827 |
[% ELSIF ( mv.type == 'hidden' ) %] |
| 828 |
<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 -%]" /> |
828 |
<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 846-854
Link Here
|
| 846 |
<span class="buttonDot tag_editor disabled" tabindex="-1" title="Field autofilled by plugin"></span> |
846 |
<span class="buttonDot tag_editor disabled" tabindex="-1" title="Field autofilled by plugin"></span> |
| 847 |
[% ELSE %] |
847 |
[% ELSE %] |
| 848 |
[% IF mv.plugin == "upload.pl" %] |
848 |
[% IF mv.plugin == "upload.pl" %] |
| 849 |
<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> |
849 |
<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> |
| 850 |
[% ELSE %] |
850 |
[% ELSE %] |
| 851 |
<a href="#" id="buttonDot_[% mv.id | html %]" class="buttonDot tag_editor framework_plugin" tabindex="1" title="Tag editor">Tag editor</a> |
851 |
<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> |
| 852 |
[% END %] |
852 |
[% END %] |
| 853 |
[% END %] |
853 |
[% END %] |
| 854 |
[% END %] |
854 |
[% END %] |
| 855 |
- |
|
|