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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt (-13 / +12 lines)
Lines 75-94 Using this account is not recommended because some parts of Koha will not functi Link Here
75
                    [% IF ( RENEW_ERROR ) %]
75
                    [% IF ( RENEW_ERROR ) %]
76
                        <div class="dialog alert">
76
                        <div class="dialog alert">
77
                            <strong>Please note:</strong>
77
                            <strong>Please note:</strong>
78
                            <span>
79
                                Your loan renewal failed because of the following reason(s):
78
                                Your loan renewal failed because of the following reason(s):
80
                                [% FOREACH error IN RENEW_ERROR.split('\|') %]
79
                                <ul>
81
                                    [% IF error == 'card_expired' %]
80
                                    [% FOREACH error IN RENEW_ERROR.split('\|') %]
82
                                        Your account has expired. Please contact the library for more information.
81
                                        [% IF error == 'card_expired' %]
83
                                    [% ELSIF error == 'too_many' %]
82
                                            <li>Your account has expired. Please contact the library for more information.</li>
84
                                        You have renewed this item the maximum number of times allowed.
83
                                        [% ELSIF error == 'too_many' %]
85
                                    [% ELSIF error == 'too_soon' %]
84
                                            <li>You have renewed this item the maximum number of times allowed.</li>
86
                                        It is too soon after the checkout date for this item to be renewed.
85
                                        [% ELSIF error == 'too_soon' %]
87
                                    [% ELSIF error == 'on_reserve' %]
86
                                            <li>It is too soon after the checkout date for this item to be renewed.</li>
88
                                        This item is on hold for another borrower.
87
                                        [% ELSIF error == 'on_reserve' %]
88
                                            <li>This item is on hold for another borrower.</li>
89
                                        [% END %]
89
                                    [% END %]
90
                                    [% END %]
90
                                [% END %]
91
                                </ul>
91
                            </span>
92
                        </div>
92
                        </div>
93
                    [% END %]
93
                    [% END %]
94
94
95
- 

Return to bug 13913