Lines 1595-1607
legend:hover {
Link Here
|
1595 |
[% ELSE %] |
1595 |
[% ELSE %] |
1596 |
[% IF patron_attribute.mandatory %] |
1596 |
[% IF patron_attribute.mandatory %] |
1597 |
[% IF patron_attribute.is_date %] |
1597 |
[% IF patron_attribute.is_date %] |
1598 |
<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" /> |
1598 |
<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" /> |
1599 |
[% ELSE %] |
1599 |
[% ELSE %] |
1600 |
<textarea rows="2" cols="30" id="[% patron_attribute.form_id | html %]" name="[% patron_attribute.form_id | html %]" required="required">[% patron_attribute.value | html %]</textarea> |
1600 |
<textarea rows="2" cols="30" id="[% patron_attribute.form_id | html %]" name="[% patron_attribute.form_id | html %]" required="required">[% patron_attribute.value | html %]</textarea> |
1601 |
[% END %] |
1601 |
[% END %] |
1602 |
[% ELSE %] |
1602 |
[% ELSE %] |
1603 |
[% IF patron_attribute.is_date %] |
1603 |
[% IF patron_attribute.is_date %] |
1604 |
<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" /> |
1604 |
<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" /> |
1605 |
[% ELSE %] |
1605 |
[% ELSE %] |
1606 |
<textarea rows="2" cols="30" id="[% patron_attribute.form_id | html %]" name="[% patron_attribute.form_id | html %]">[% patron_attribute.value | html %]</textarea> |
1606 |
<textarea rows="2" cols="30" id="[% patron_attribute.form_id | html %]" name="[% patron_attribute.form_id | html %]">[% patron_attribute.value | html %]</textarea> |
1607 |
[% END %] |
1607 |
[% END %] |
1608 |
- |
|
|