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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt (+3 lines)
Lines 229-234 Link Here
229
                                                        <span class="renewals">([% ISSUE.renewsleft %] of [% ISSUE.renewsallowed %] renewals remaining)</span>
229
                                                        <span class="renewals">([% ISSUE.renewsleft %] of [% ISSUE.renewsallowed %] renewals remaining)</span>
230
                                                    [% ELSIF ( ISSUE.too_many ) %]
230
                                                    [% ELSIF ( ISSUE.too_many ) %]
231
                                                        Not renewable
231
                                                        Not renewable
232
                                                    [% ELSIF ( ISSUE.auto_renew || ISSUE.auto_too_soon ) %]
233
                                                        Automatic renewal
234
                                                        <span class="renewals">([% ISSUE.renewsleft %] of [% ISSUE.renewsallowed %] renewals remaining)</span>
232
                                                    [% ELSIF ( ISSUE.too_soon ) %]
235
                                                    [% ELSIF ( ISSUE.too_soon ) %]
233
                                                        No renewal before [% ISSUE.soonestrenewdate %]
236
                                                        No renewal before [% ISSUE.soonestrenewdate %]
234
                                                        <span class="renewals">([% ISSUE.renewsleft %] of [% ISSUE.renewsallowed %] renewals remaining)</span>
237
                                                        <span class="renewals">([% ISSUE.renewsleft %] of [% ISSUE.renewsallowed %] renewals remaining)</span>
(-)a/opac/opac-user.pl (-3 / +4 lines)
Lines 190-197 if ($issues){ Link Here
190
        }
190
        }
191
191
192
        if ($renewerror) {
192
        if ($renewerror) {
193
            $issue->{'too_many'}   = 1 if $renewerror eq 'too_many';
193
            $issue->{'too_many'}       = 1 if $renewerror eq 'too_many';
194
            $issue->{'on_reserve'} = 1 if $renewerror eq 'on_reserve';
194
            $issue->{'on_reserve'}     = 1 if $renewerror eq 'on_reserve';
195
            $issue->{'auto_renew'}     = 1 if $renewerror eq 'auto_renew';
196
            $issue->{'auto_too_soon'}  = 1 if $renewerror eq 'auto_too_soon';
195
197
196
            if ( $renewerror eq 'too_soon' ) {
198
            if ( $renewerror eq 'too_soon' ) {
197
                $issue->{'too_soon'}         = 1;
199
                $issue->{'too_soon'}         = 1;
198
- 

Return to bug 11577