Lines 1658-1670
legend.collapsed i.fa.fa-caret-down::before {
Link Here
|
1658 |
[% ELSE %] |
1658 |
[% ELSE %] |
1659 |
[% IF patron_attribute.mandatory %] |
1659 |
[% IF patron_attribute.mandatory %] |
1660 |
[% IF patron_attribute.is_date %] |
1660 |
[% IF patron_attribute.is_date %] |
1661 |
<input type="text" id="[% patron_attribute.form_id | html %]" name="[% patron_attribute.form_id | html %]" maxlength="10" size="10" value="[% patron_attribute.value | html %]" required="required" class="flatpickr" data-date_to="to" /> |
1661 |
<input type="text" id="[% patron_attribute.form_id | html %]" name="[% patron_attribute.form_id | html %]" maxlength="10" size="10" value="[% patron_attribute.value | html %]" required="required" class="flatpickr" /> |
1662 |
[% ELSE %] |
1662 |
[% ELSE %] |
1663 |
<textarea rows="2" cols="30" id="[% patron_attribute.form_id | html %]" name="[% patron_attribute.form_id | html %]" required="required">[% patron_attribute.value | html %]</textarea> |
1663 |
<textarea rows="2" cols="30" id="[% patron_attribute.form_id | html %]" name="[% patron_attribute.form_id | html %]" required="required">[% patron_attribute.value | html %]</textarea> |
1664 |
[% END %] |
1664 |
[% END %] |
1665 |
[% ELSE %] |
1665 |
[% ELSE %] |
1666 |
[% IF patron_attribute.is_date %] |
1666 |
[% IF patron_attribute.is_date %] |
1667 |
<input type="text" id="[% patron_attribute.form_id | html %]" name="[% patron_attribute.form_id | html %]" maxlength="10" size="10" value="[% patron_attribute.value | html %]" class="flatpickr" data-date_to="to" /> |
1667 |
<input type="text" id="[% patron_attribute.form_id | html %]" name="[% patron_attribute.form_id | html %]" maxlength="10" size="10" value="[% patron_attribute.value | html %]" class="flatpickr" /> |
1668 |
[% ELSE %] |
1668 |
[% ELSE %] |
1669 |
<textarea rows="2" cols="30" id="[% patron_attribute.form_id | html %]" name="[% patron_attribute.form_id | html %]">[% patron_attribute.value | html %]</textarea> |
1669 |
<textarea rows="2" cols="30" id="[% patron_attribute.form_id | html %]" name="[% patron_attribute.form_id | html %]">[% patron_attribute.value | html %]</textarea> |
1670 |
[% END %] |
1670 |
[% END %] |
1671 |
- |
|
|