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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/borrowers.json (+1 lines)
Lines 36-41 Link Here
36
    "categorycode": "categorycode",
36
    "categorycode": "categorycode",
37
    "contactname": "contactname",
37
    "contactname": "contactname",
38
    "contactfirstname": "contactfirstname",
38
    "contactfirstname": "contactfirstname",
39
    "relationship": "relationship",
39
    "borrowernotes": "borrowernotes",
40
    "borrowernotes": "borrowernotes",
40
    "sex": "sex",
41
    "sex": "sex",
41
    "password": "password",
42
    "password": "password",
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt (-2 / +8 lines)
Lines 632-638 legend:hover { Link Here
632
                                                [% UNLESS norelationship %]
632
                                                [% UNLESS norelationship %]
633
                                                    [% IF possible_relationships %]
633
                                                    [% IF possible_relationships %]
634
                                                        <li>
634
                                                        <li>
635
                                                            <label for="relationship">Relationship: </label>
635
                                                            [% IF mandatoryrelationship %]
636
                                                                <label for="relationship" class="required">Relationship: </label>
637
                                                            [% ELSE %]
638
                                                                <label for="relationship">Relationship: </label>
639
                                                            [% END %]
636
                                                            <select class="relationship" name="relationship">
640
                                                            <select class="relationship" name="relationship">
637
                                                                <option value=""></option>
641
                                                                <option value=""></option>
638
                                                                [% FOREACH pr IN possible_relationships.split('\|') %]
642
                                                                [% FOREACH pr IN possible_relationships.split('\|') %]
Lines 643-648 legend:hover { Link Here
643
                                                                    [% END %]
647
                                                                    [% END %]
644
                                                                [% END %]
648
                                                                [% END %]
645
                                                            </select>
649
                                                            </select>
650
                                                            [% IF mandatoryrelationship %]
651
                                                                <span class="required">Required</span>
652
                                                            [% END %]
646
                                                        </li>
653
                                                        </li>
647
                                                    [% END #/IF possible_relationships %]
654
                                                    [% END #/IF possible_relationships %]
648
                                                [% END # /UNLESS norelationship %]
655
                                                [% END # /UNLESS norelationship %]
649
- 

Return to bug 30121