View | Details | Raw Unified | Return to bug 33349
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt (-1 / +1 lines)
Lines 1548-1554 legend:hover { Link Here
1548
                                                        <legend id="[% pa_loo.class | html %]_lgd">[% pa_loo.lib | html %]</legend>
1548
                                                        <legend id="[% pa_loo.class | html %]_lgd">[% pa_loo.lib | html %]</legend>
1549
                                                    [% END %]
1549
                                                    [% END %]
1550
                                                    [% FOREACH patron_attribute IN pa_loo.items %]
1550
                                                    [% FOREACH patron_attribute IN pa_loo.items %]
1551
                                                        <li data-category_code="[% patron_attribute.category_code | html %]">
1551
                                                        <li data-category_code="[% patron_attribute.category_code | html %]" data-pa_code="[% patron_attribute.code | replace('[^a-zA-Z0-9_-]', '') %]">
1552
                                                            [% IF patron_attribute.mandatory %]
1552
                                                            [% IF patron_attribute.mandatory %]
1553
                                                                <label for="[% patron_attribute.form_id | html %]" class="required" required="required">[% patron_attribute.description | html %]: </label>
1553
                                                                <label for="[% patron_attribute.form_id | html %]" class="required" required="required">[% patron_attribute.description | html %]: </label>
1554
                                                            [% ELSE %]
1554
                                                            [% ELSE %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt (-2 / +1 lines)
Lines 318-324 Link Here
318
                                                    <h4>[% attribute.lib | html %]</h4>
318
                                                    <h4>[% attribute.lib | html %]</h4>
319
                                                    <ol>
319
                                                    <ol>
320
                                                        [% FOREACH item IN attribute.items %]
320
                                                        [% FOREACH item IN attribute.items %]
321
                                                            <li>
321
                                                            <li data-pa_code="[% item.type.code | replace('[^a-zA-Z0-9_-]', '') %]">
322
                                                                <span class="label">[% item.type.description | html %]: </span>
322
                                                                <span class="label">[% item.type.description | html %]: </span>
323
                                                                [% item.description | html_line_break %]
323
                                                                [% item.description | html_line_break %]
324
                                                            </li>
324
                                                            </li>
325
- 

Return to bug 33349