Lines 1575-1587
legend:hover {
Link Here
|
1575 |
</select> |
1575 |
</select> |
1576 |
[% ELSE %] |
1576 |
[% ELSE %] |
1577 |
[% IF patron_attribute.mandatory %] |
1577 |
[% IF patron_attribute.mandatory %] |
1578 |
<textarea rows="2" cols="30" id="[% patron_attribute.form_id | html %]" name="[% patron_attribute.form_id | html %]" required="required">[% patron_attribute.value | html %]</textarea> |
1578 |
[% IF patron_attribute.is_date %] |
|
|
1579 |
<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" /> |
1580 |
[% ELSE %] |
1581 |
<textarea rows="2" cols="30" id="[% patron_attribute.form_id | html %]" name="[% patron_attribute.form_id | html %]" required="required">[% patron_attribute.value | html %]</textarea> |
1582 |
[% END %] |
1579 |
[% ELSE %] |
1583 |
[% ELSE %] |
1580 |
<textarea rows="2" cols="30" id="[% patron_attribute.form_id | html %]" name="[% patron_attribute.form_id | html %]">[% patron_attribute.value | html %]</textarea> |
1584 |
[% IF patron_attribute.is_date %] |
|
|
1585 |
<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" /> |
1586 |
[% ELSE %] |
1587 |
<textarea rows="2" cols="30" id="[% patron_attribute.form_id | html %]" name="[% patron_attribute.form_id | html %]">[% patron_attribute.value | html %]</textarea> |
1588 |
[% END %] |
1581 |
[% END %] |
1589 |
[% END %] |
1582 |
[% END # /IF ( patron_attribute.use_dropdown ) %] |
1590 |
[% END # /IF ( patron_attribute.use_dropdown ) %] |
1583 |
<input type="hidden" id="[% patron_attribute.form_id | html %]_code" name="[% patron_attribute.form_id | html %]_code" value="[% patron_attribute.code | html %]" /> |
1591 |
<input type="hidden" id="[% patron_attribute.form_id | html %]_code" name="[% patron_attribute.form_id | html %]_code" value="[% patron_attribute.code | html %]" /> |
1584 |
<a href="#" class="clear_attribute"><i class="fa fa-fw fa-trash"></i> Clear</a> |
1592 |
[% IF ( !patron_attribute.is_date ) %] |
|
|
1593 |
<a href="#" class="clear_attribute"><i class="fa fa-fw fa-trash"></i> Clear</a> |
1594 |
[% END %] |
1585 |
[% IF ( patron_attribute.repeatable ) %] |
1595 |
[% IF ( patron_attribute.repeatable ) %] |
1586 |
<a href="#" class="clone_attribute"><i class="fa fa-fw fa-plus"></i> New</a> |
1596 |
<a href="#" class="clone_attribute"><i class="fa fa-fw fa-plus"></i> New</a> |
1587 |
[% END %] |
1597 |
[% END %] |