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

(-)a/Koha/ILL/Backend/shared-includes/form_input_helpers.inc (-3 / +2 lines)
Lines 2-10 Link Here
2
    <li>
2
    <li>
3
      <label for="[% id | html %]">[% label | html %][% IF required %]*[% END %]</label>
3
      <label for="[% id | html %]">[% label | html %][% IF required %]*[% END %]</label>
4
      [% IF opac %]
4
      [% IF opac %]
5
        <input class="form-control input-fluid" type="[% type | html %]" name="[% id | html %]" id="[% id | html%]" value="[% value | html %]" />
5
        <input class="form-control input-fluid" type="text" name="[% id | html %]" id="[% id | html%]" value="[% value | html %]" />
6
      [% ELSE %]
6
      [% ELSE %]
7
        <input type="[% type | html %]" name="[% id | html %]" id="[% id | html%]" value="[% value | html %]" />
7
        <input type="text" name="[% id | html %]" id="[% id | html%]" value="[% value | html %]" />
8
      [% END %]
8
      [% END %]
9
    </li>
9
    </li>
10
    [% SET required = 0 %]
10
    [% SET required = 0 %]
11
- 

Return to bug 36221