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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry.tt (+6 lines)
Lines 162-167 Link Here
162
                        <div class="alert alert-warning">You typed in the wrong characters in the box before submitting. Please try again.</div>
162
                        <div class="alert alert-warning">You typed in the wrong characters in the box before submitting. Please try again.</div>
163
                    [% END %]
163
                    [% END %]
164
164
165
                    [% IF patron_pending_modification %]
166
                        <div class="alert alert-success">
167
                            <p>Your have recently submitted updates to your personal details. A librarian will review your updates before applying them.</p>
168
                        </div>
169
                    [% END %]
170
165
                    [% IF has_guarantor_flag && !Koha.Preference('OPACPrivacy') && ( Koha.Preference('AllowPatronToSetCheckoutsVisibilityForGuarantor') || Koha.Preference('AllowPatronToSetFinesVisibilityForGuarantor') ) %]
171
                    [% IF has_guarantor_flag && !Koha.Preference('OPACPrivacy') && ( Koha.Preference('AllowPatronToSetCheckoutsVisibilityForGuarantor') || Koha.Preference('AllowPatronToSetFinesVisibilityForGuarantor') ) %]
166
                        <div class="row">
172
                        <div class="row">
167
                            <div class="col">
173
                            <div class="col">
(-)a/opac/opac-memberentry.pl (-1 / +6 lines)
Lines 387-392 if ( $op eq 'cud-create' ) { Link Here
387
    }
387
    }
388
388
389
    $template->param( patron_attribute_classes => GeneratePatronAttributesForm($borrowernumber) );
389
    $template->param( patron_attribute_classes => GeneratePatronAttributesForm($borrowernumber) );
390
391
    my $patron_pending_modification =
392
        Koha::Patron::Modifications->search( { borrowernumber => $patron->borrowernumber } )->next;
393
    if ($patron_pending_modification) {
394
        $template->param( patron_pending_modification => $patron_pending_modification );
395
    }
390
} else {
396
} else {
391
397
392
    # Render self-registration page
398
    # Render self-registration page
393
- 

Return to bug 32483