Lines 1563-1575
legend:hover {
Link Here
|
1563 |
[% ELSE %] |
1563 |
[% ELSE %] |
1564 |
[% IF patron_attribute.mandatory %] |
1564 |
[% IF patron_attribute.mandatory %] |
1565 |
[% IF patron_attribute.is_date %] |
1565 |
[% IF patron_attribute.is_date %] |
1566 |
<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" /> |
1566 |
<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" /> |
1567 |
[% ELSE %] |
1567 |
[% ELSE %] |
1568 |
<textarea rows="2" cols="30" id="[% patron_attribute.form_id | html %]" name="[% patron_attribute.form_id | html %]" required="required">[% patron_attribute.value | html %]</textarea> |
1568 |
<textarea rows="2" cols="30" id="[% patron_attribute.form_id | html %]" name="[% patron_attribute.form_id | html %]" required="required">[% patron_attribute.value | html %]</textarea> |
1569 |
[% END %] |
1569 |
[% END %] |
1570 |
[% ELSE %] |
1570 |
[% ELSE %] |
1571 |
[% IF patron_attribute.is_date %] |
1571 |
[% IF patron_attribute.is_date %] |
1572 |
<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" /> |
1572 |
<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" /> |
1573 |
[% ELSE %] |
1573 |
[% ELSE %] |
1574 |
<textarea rows="2" cols="30" id="[% patron_attribute.form_id | html %]" name="[% patron_attribute.form_id | html %]">[% patron_attribute.value | html %]</textarea> |
1574 |
<textarea rows="2" cols="30" id="[% patron_attribute.form_id | html %]" name="[% patron_attribute.form_id | html %]">[% patron_attribute.value | html %]</textarea> |
1575 |
[% END %] |
1575 |
[% END %] |
1576 |
- |
|
|