Lines 1532-1539
legend:hover {
Link Here
|
1532 |
[% FOREACH pa_loo IN patron_attributes %] |
1532 |
[% FOREACH pa_loo IN patron_attributes %] |
1533 |
<ol class="attributes_table"> |
1533 |
<ol class="attributes_table"> |
1534 |
[% IF pa_loo.class %] |
1534 |
[% IF pa_loo.class %] |
1535 |
<fieldset id="aai_[% pa_loo.class | html %]"> |
1535 |
<div id="aai_[% pa_loo.class | html %]"> |
1536 |
<legend id="[% pa_loo.class | html %]_lgd">[% pa_loo.lib | html %]</legend> |
1536 |
<h3 id="[% pa_loo.class | html %]_lgd">[% pa_loo.lib | html %]</h3> |
1537 |
[% END %] |
1537 |
[% END %] |
1538 |
[% FOREACH patron_attribute IN pa_loo.items %] |
1538 |
[% FOREACH patron_attribute IN pa_loo.items %] |
1539 |
<li data-category_code="[% patron_attribute.category_code | html %]" data-pa_code="[% patron_attribute.code | replace('[^a-zA-Z0-9_-]', '') %]"> |
1539 |
<li data-category_code="[% patron_attribute.category_code | html %]" data-pa_code="[% patron_attribute.code | replace('[^a-zA-Z0-9_-]', '') %]"> |
Lines 1576-1582
legend:hover {
Link Here
|
1576 |
[% IF patron_attribute.mandatory %]<span class="required">Required</span>[% END %] |
1576 |
[% IF patron_attribute.mandatory %]<span class="required">Required</span>[% END %] |
1577 |
</li> |
1577 |
</li> |
1578 |
[% END # /FOREACH patron_attribute %] |
1578 |
[% END # /FOREACH patron_attribute %] |
1579 |
[% IF pa_loo.class %]</fieldset>[% END %] |
1579 |
[% IF pa_loo.class %]</div>[% END %] |
1580 |
</ol> |
1580 |
</ol> |
1581 |
[% END # /FOREACH pa_loo %] |
1581 |
[% END # /FOREACH pa_loo %] |
1582 |
</fieldset> <!-- /#memberentry_patron_attributes --> |
1582 |
</fieldset> <!-- /#memberentry_patron_attributes --> |
1583 |
- |
|
|