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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/patronfields.inc (-1 / +1 lines)
Lines 88-94 Link Here
88
    [%- CASE 'dateexpiry' -%]
88
    [%- CASE 'dateexpiry' -%]
89
        [% t("Expiry date") | html %]
89
        [% t("Expiry date") | html %]
90
    [%- CASE 'gonenoaddress' -%]
90
    [%- CASE 'gonenoaddress' -%]
91
        [% t("Gone no address") | html %]
91
        [% t("Address correction needed") | html %]
92
    [%- CASE 'lost' -%]
92
    [%- CASE 'lost' -%]
93
        [% t("Lost card") | html %]
93
        [% t("Lost card") | html %]
94
    [%- CASE 'debarred' -%]
94
    [%- CASE 'debarred' -%]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt (-1 / +1 lines)
Lines 1304-1310 Link Here
1304
                                        <ol class="radio">
1304
                                        <ol class="radio">
1305
                                            [% UNLESS nogonenoaddress %]
1305
                                            [% UNLESS nogonenoaddress %]
1306
                                                <li>
1306
                                                <li>
1307
                                                    <label class="radio [% IF mandatorygonenoaddress %]required[% END %]" for="yesgonenoaddress"> Gone no address: </label>
1307
                                                    <label class="radio [% IF mandatorygonenoaddress %]required[% END %]" for="yesgonenoaddress"> Address correction needed: </label>
1308
                                                    [% IF CAN_user_circulate_manage_restrictions %]
1308
                                                    [% IF CAN_user_circulate_manage_restrictions %]
1309
                                                        <label for="yesgonenoaddress">
1309
                                                        <label for="yesgonenoaddress">
1310
                                                            [% IF ( borrower_data.gonenoaddress ) %]
1310
                                                            [% IF ( borrower_data.gonenoaddress ) %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/members-update.tt (-3 / +2 lines)
Lines 193-201 Link Here
193
                            [% IF borrowers.$borrowernumber.gonenoaddress > 0 %]
193
                            [% IF borrowers.$borrowernumber.gonenoaddress > 0 %]
194
                                <div class="alert alert-info" style="margin-top:.8em">
194
                                <div class="alert alert-info" style="margin-top:.8em">
195
                                    <h4>Patron's address in doubt</h4>
195
                                    <h4>Patron's address in doubt</h4>
196
                                    <p>The <strong>Gone no address</strong> flag is set for this patron. If this modification request resolves the issue, please unset the flag.</p>
196
                                    <p>The <strong class="gonenoaddress">Address correction needed</strong> flag is set for this patron. If this modification request resolves the issue, please unset the flag.</p>
197
                                    <input type="checkbox" id="unset_gna_[% pm.borrowernumber | html %]" name="unset_gna_[% pm.borrowernumber | html %]" value="unset_gna_[% pm.borrowernumber | html %]" />
197
                                    <input type="checkbox" id="unset_gna_[% pm.borrowernumber | html %]" name="unset_gna_[% pm.borrowernumber | html %]" value="unset_gna_[% pm.borrowernumber | html %]" />
198
                                    <label for="unset_gna_[% pm.borrowernumber | html %]">Unset Gone no address for this patron</label>
198
                                    <label for="unset_gna_[% pm.borrowernumber | html %]">Unset <span class="gonenoaddress">Address correction needed</span> for this patron</label>
199
                                </div>
199
                                </div>
200
                            [% END %]
200
                            [% END %]
201
201
202
- 

Return to bug 36278