Lines 1082-1088
$(document).ready(function() {
Link Here
|
1082 |
[% FOREACH patron_attribute IN pa_loo.items %] |
1082 |
[% FOREACH patron_attribute IN pa_loo.items %] |
1083 |
<li data-category_code="[% patron_attribute.category_code %]"> |
1083 |
<li data-category_code="[% patron_attribute.category_code %]"> |
1084 |
<label for="[% patron_attribute.form_id %]">[% patron_attribute.description %]: </label> |
1084 |
<label for="[% patron_attribute.form_id %]">[% patron_attribute.description %]: </label> |
1085 |
<input type="hidden" id="[% patron_attribute.form_id %]_code" name="[% patron_attribute.form_id %]_code" value="[% patron_attribute.code |html %]" /> |
|
|
1086 |
[% IF ( patron_attribute.use_dropdown ) %] |
1085 |
[% IF ( patron_attribute.use_dropdown ) %] |
1087 |
<select id="[% patron_attribute.form_id %]" name="[% patron_attribute.form_id %]"> |
1086 |
<select id="[% patron_attribute.form_id %]" name="[% patron_attribute.form_id %]"> |
1088 |
<option value=""></option> |
1087 |
<option value=""></option> |
Lines 1101-1106
$(document).ready(function() {
Link Here
|
1101 |
[% ELSE %] |
1100 |
[% ELSE %] |
1102 |
<textarea rows="2" cols="30" id="[% patron_attribute.form_id %]" name="[% patron_attribute.form_id %]">[% patron_attribute.value %]</textarea> |
1101 |
<textarea rows="2" cols="30" id="[% patron_attribute.form_id %]" name="[% patron_attribute.form_id %]">[% patron_attribute.value %]</textarea> |
1103 |
[% END %] |
1102 |
[% END %] |
|
|
1103 |
<input type="hidden" id="[% patron_attribute.form_id %]_code" name="[% patron_attribute.form_id %]_code" value="[% patron_attribute.code |html %]" /> |
1104 |
<a href="#" onclick="clear_entry(this); return false;"><i class="fa fa-fw fa-trash"></i> Clear</a> |
1104 |
<a href="#" onclick="clear_entry(this); return false;"><i class="fa fa-fw fa-trash"></i> Clear</a> |
1105 |
[% IF ( patron_attribute.repeatable ) %] |
1105 |
[% IF ( patron_attribute.repeatable ) %] |
1106 |
<a href="#" onclick="clone_entry(this); return false;"><i class="fa fa-fw fa-plus"></i> New</a> |
1106 |
<a href="#" onclick="clone_entry(this); return false;"><i class="fa fa-fw fa-plus"></i> New</a> |
1107 |
- |
|
|