Lines 1554-1561
legend:hover {
Link Here
|
1554 |
[% FOREACH pa_loo IN patron_attributes %] |
1554 |
[% FOREACH pa_loo IN patron_attributes %] |
1555 |
<ol class="attributes_table"> |
1555 |
<ol class="attributes_table"> |
1556 |
[% IF pa_loo.class %] |
1556 |
[% IF pa_loo.class %] |
1557 |
<fieldset id="aai_[% pa_loo.class | html %]"> |
1557 |
<div id="aai_[% pa_loo.class | html %]"> |
1558 |
<legend id="[% pa_loo.class | html %]_lgd">[% pa_loo.lib | html %]</legend> |
1558 |
<h3 id="[% pa_loo.class | html %]_lgd">[% pa_loo.lib | html %]</h3> |
1559 |
[% END %] |
1559 |
[% END %] |
1560 |
[% FOREACH patron_attribute IN pa_loo.items %] |
1560 |
[% FOREACH patron_attribute IN pa_loo.items %] |
1561 |
<li data-category_code="[% patron_attribute.category_code | html %]" data-pa_code="[% patron_attribute.code | replace('[^a-zA-Z0-9_-]', '') %]"> |
1561 |
<li data-category_code="[% patron_attribute.category_code | html %]" data-pa_code="[% patron_attribute.code | replace('[^a-zA-Z0-9_-]', '') %]"> |
Lines 1598-1604
legend:hover {
Link Here
|
1598 |
[% IF patron_attribute.mandatory %]<span class="required">Required</span>[% END %] |
1598 |
[% IF patron_attribute.mandatory %]<span class="required">Required</span>[% END %] |
1599 |
</li> |
1599 |
</li> |
1600 |
[% END # /FOREACH patron_attribute %] |
1600 |
[% END # /FOREACH patron_attribute %] |
1601 |
[% IF pa_loo.class %]</fieldset>[% END %] |
1601 |
[% IF pa_loo.class %]</div>[% END %] |
1602 |
</ol> |
1602 |
</ol> |
1603 |
[% END # /FOREACH pa_loo %] |
1603 |
[% END # /FOREACH pa_loo %] |
1604 |
</fieldset> <!-- /#memberentry_patron_attributes --> |
1604 |
</fieldset> <!-- /#memberentry_patron_attributes --> |
1605 |
- |
|
|