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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/opac.pref (-2 / +2 lines)
Lines 600-606 OPAC: Link Here
600
            - Only allow patrons to renew their own books on the OPAC if they have less than
600
            - Only allow patrons to renew their own books on the OPAC if they have less than
601
            - pref: OPACFineNoRenewals
601
            - pref: OPACFineNoRenewals
602
              class: currency
602
              class: currency
603
            - '[% local_currency %] in fines (leave blank to disable).'
603
            - '[% local_currency %] in charges (leave blank to disable).'
604
        -
604
        -
605
            - pref: OPACFineNoRenewalsIncludeCredits
605
            - pref: OPACFineNoRenewalsIncludeCredits
606
              choices:
606
              choices:
Lines 686-692 OPAC: Link Here
686
              choices:
686
              choices:
687
                  1: Allow
687
                  1: Allow
688
                  0: "Don't allow"
688
                  0: "Don't allow"
689
            - "patrons to choose their own privacy settings for showing the patron's fines to the patron's guarantor."
689
            - "patrons to choose their own privacy settings for showing the patron's charges to the patron's guarantor."
690
        -
690
        -
691
            - Use borrowernumber
691
            - Use borrowernumber
692
            - pref: AnonymousPatron
692
            - pref: AnonymousPatron
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/patrons.pref (-1 / +1 lines)
Lines 348-354 Patrons: Link Here
348
           choices:
348
           choices:
349
               1: Allow
349
               1: Allow
350
               0: "Don't allow"
350
               0: "Don't allow"
351
         - staff to set the ability for a patron's fines to be viewed by linked patrons in the OPAC.
351
         - staff to set the ability for a patron's charges to be viewed by linked patrons in the OPAC.
352
352
353
    Privacy:
353
    Privacy:
354
     -
354
     -
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt (-2 / +2 lines)
Lines 610-616 legend:hover { Link Here
610
                                                [% END %]
610
                                                [% END %]
611
                                                [% IF Koha.Preference('AllowStaffToSetFinesVisibilityForGuarantor') %]
611
                                                [% IF Koha.Preference('AllowStaffToSetFinesVisibilityForGuarantor') %]
612
                                                    <li>
612
                                                    <li>
613
                                                        <label for="privacy_guarantor_fines">Show fines to guarantors</label>
613
                                                        <label for="privacy_guarantor_fines">Show charges to guarantors</label>
614
                                                        <select name="privacy_guarantor_fines" id="privacy_guarantor_fines">
614
                                                        <select name="privacy_guarantor_fines" id="privacy_guarantor_fines">
615
                                                            [% IF borrower_data.privacy_guarantor_fines %]
615
                                                            [% IF borrower_data.privacy_guarantor_fines %]
616
                                                                <option value="0">No</option>
616
                                                                <option value="0">No</option>
Lines 620-626 legend:hover { Link Here
620
                                                                <option value="1">Yes</option>
620
                                                                <option value="1">Yes</option>
621
                                                            [% END %]
621
                                                            [% END %]
622
                                                        </select>
622
                                                        </select>
623
                                                        <div class="hint">Allow guarantors of this patron to view this patron's fines from the OPAC</div>
623
                                                        <div class="hint">Allow guarantors of this patron to view this patron's charges from the OPAC</div>
624
                                                    </li>
624
                                                    </li>
625
                                                [% END %]
625
                                                [% END %]
626
                                            </ol>
626
                                            </ol>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt (-1 / +1 lines)
Lines 200-206 Link Here
200
                                        </li>
200
                                        </li>
201
201
202
                                        <li id="patron-privacy_guarantor_fines">
202
                                        <li id="patron-privacy_guarantor_fines">
203
                                            <span class="label">Show fines to guarantor</span>
203
                                            <span class="label">Show charges to guarantor</span>
204
                                            [% IF patron.privacy_guarantor_fines %]
204
                                            [% IF patron.privacy_guarantor_fines %]
205
                                                Yes
205
                                                Yes
206
                                            [% ELSE %]
206
                                            [% ELSE %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-privacy.tt (-2 / +1 lines)
Lines 121-127 Link Here
121
                                    [% IF Koha.Preference('AllowPatronToSetFinesVisibilityForGuarantor') %]
121
                                    [% IF Koha.Preference('AllowPatronToSetFinesVisibilityForGuarantor') %]
122
                                        <div class="form-group row">
122
                                        <div class="form-group row">
123
                                            <div class="col-6">
123
                                            <div class="col-6">
124
                                                <label for="privacy_guarantor_fines">Allow your guarantor to view your current fines?</label>
124
                                                <label for="privacy_guarantor_fines">Allow your guarantor to view your current charges?</label>
125
                                                <select class="form-control" name="privacy_guarantor_fines">
125
                                                <select class="form-control" name="privacy_guarantor_fines">
126
                                                    [% IF borrower.privacy_guarantor_fines %]
126
                                                    [% IF borrower.privacy_guarantor_fines %]
127
                                                        <option value="0">No</option>
127
                                                        <option value="0">No</option>
128
- 

Return to bug 33058