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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref (-1 / +1 lines)
Lines 486-492 Circulation: Link Here
486
              choices:
486
              choices:
487
                  yes: Block
487
                  yes: Block
488
                  no: Allow
488
                  no: Allow
489
            - their auto renewals.
489
            - their auto-renewals.
490
        -
490
        -
491
            - If a patron pays off all fines on an overdue item that is accruing fines
491
            - If a patron pays off all fines on an overdue item that is accruing fines
492
            - pref: RenewAccruingItemWhenPaid
492
            - pref: RenewAccruingItemWhenPaid
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/patrons.pref (-1 / +1 lines)
Lines 84-90 Patrons: Link Here
84
           choices:
84
           choices:
85
               yes: Allow patrons
85
               yes: Allow patrons
86
               no: Allow only staff
86
               no: Allow only staff
87
         - "to allow/disallow auto renewal for account. If allowed a patron will be able to update their own account to allow/disallow auto renewals"
87
         - "to allow/disallow auto-renewal for account. If allowed a patron will be able to update their own account to allow/disallow auto renewals"
88
    Membership expiry:
88
    Membership expiry:
89
     -
89
     -
90
         - When renewing borrowers, base the new expiry date on
90
         - When renewing borrowers, base the new expiry date on
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-brief.tt (-1 / +1 lines)
Lines 84-90 Link Here
84
            <li><span class="label">Library: </span>[% patron.library.branchname | html %]</li>
84
            <li><span class="label">Library: </span>[% patron.library.branchname | html %]</li>
85
            [% IF ( patron.sort1 ) %]<li><span class="label">Sort field 1:</span>[% AuthorisedValues.GetByCode('Bsort1', patron.sort1) | html %]</li>[% END %]
85
            [% IF ( patron.sort1 ) %]<li><span class="label">Sort field 1:</span>[% AuthorisedValues.GetByCode('Bsort1', patron.sort1) | html %]</li>[% END %]
86
            [% IF ( patron.sort2 ) %]<li><span class="label">Sort field 2:</span>[% AuthorisedValues.GetByCode('Bsort2', patron.sort2) | html %]</li>[% END %]
86
            [% IF ( patron.sort2 ) %]<li><span class="label">Sort field 2:</span>[% AuthorisedValues.GetByCode('Bsort2', patron.sort2) | html %]</li>[% END %]
87
            [% UNLESS ( patron.autorenew_checkouts ) %]<li>Auto renewal: Patron has opted out</li>[% END %]
87
            [% UNLESS ( patron.autorenew_checkouts ) %]<li>Auto-renewal: Patron has opted out</li>[% END %]
88
        </ol>
88
        </ol>
89
    </div>
89
    </div>
90
    </div>
90
    </div>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt (-1 / +1 lines)
Lines 522-528 Link Here
522
                                        [% END %]
522
                                        [% END %]
523
                                        [% UNLESS ( patron.autorenew_checkouts ) %]
523
                                        [% UNLESS ( patron.autorenew_checkouts ) %]
524
                                            <li id="patron-autorenew_checkouts">
524
                                            <li id="patron-autorenew_checkouts">
525
                                                <span class="label">Auto renewal:</span>
525
                                                <span class="label">Auto-renewal:</span>
526
                                                Patron has opted out
526
                                                Patron has opted out
527
                                            </li>
527
                                            </li>
528
                                        [% END %]
528
                                        [% END %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt (-3 / +2 lines)
Lines 154-160 Link Here
154
                    [% IF Koha.Preference('AllowPatronToControlAutorenewal') %]
154
                    [% IF Koha.Preference('AllowPatronToControlAutorenewal') %]
155
                    <form id="autorenewal_option" action="/cgi-bin/koha/opac-user.pl" method="post">
155
                    <form id="autorenewal_option" action="/cgi-bin/koha/opac-user.pl" method="post">
156
                            <label for="yes-autorenew_checkouts">
156
                            <label for="yes-autorenew_checkouts">
157
                                Allow auto renewal:
157
                                Allow auto-renewal:
158
                            </label>
158
                            </label>
159
                                [% IF ( borrower.autorenew_checkouts ) %]
159
                                [% IF ( borrower.autorenew_checkouts ) %]
160
                                    <label class="radio inline" for="yes-autorenew_checkouts">
160
                                    <label class="radio inline" for="yes-autorenew_checkouts">
Lines 178-184 Link Here
178
                                [% END %]
178
                                [% END %]
179
                        <input type="hidden" name="csrf_token" value="[% csrf_token | html %]" />
179
                        <input type="hidden" name="csrf_token" value="[% csrf_token | html %]" />
180
                        <input type="hidden" name="update_arc" value="1" />
180
                        <input type="hidden" name="update_arc" value="1" />
181
                        <input type="submit" value="Update auto renewal preference" />
181
                        <input type="submit" value="Update auto-renewal preference" />
182
                    </form>
182
                    </form>
183
                    [% END %]
183
                    [% END %]
184
184
185
- 

Return to bug 24963