View | Details | Raw Unified | Return to bug 30975
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tt (-5 / +4 lines)
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 821-827 Link Here
821
        [% END %]
821
        [% END %]
822
822
823
    [% ELSIF ( mv.type == 'text_complex' ) %]
823
    [% ELSIF ( mv.type == 'text_complex' ) %]
824
        <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 -%]" />
824
        <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 %]" />
825
        [% mv.javascript | $raw %]
825
        [% mv.javascript | $raw %]
826
    [% ELSIF ( mv.type == 'hidden' ) %]
826
    [% ELSIF ( mv.type == 'hidden' ) %]
827
        <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 -%]" />
827
        <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 845-853 Link Here
845
                <span class="buttonDot tag_editor disabled" tabindex="-1" title="Field autofilled by plugin"></span>
845
                <span class="buttonDot tag_editor disabled" tabindex="-1" title="Field autofilled by plugin"></span>
846
            [% ELSE %]
846
            [% ELSE %]
847
                [% IF mv.plugin == "upload.pl" %]
847
                [% IF mv.plugin == "upload.pl" %]
848
                    <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>
848
                    <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>
849
                [% ELSE %]
849
                [% ELSE %]
850
                    <a href="#" id="buttonDot_[% mv.id | html %]" class="buttonDot tag_editor framework_plugin" tabindex="1" title="Tag editor">Tag editor</a>
850
                    <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>
851
                [% END %]
851
                [% END %]
852
            [% END %]
852
            [% END %]
853
        [% END %]
853
        [% END %]
854
- 

Return to bug 30975