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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/account-table.inc (-1 / +1 lines)
Lines 1-4 Link Here
1
<h3>Fines and charges</h3>
1
<h3>Charges</h3>
2
2
3
[% IF ( ACCOUNT_LINES ) %]
3
[% IF ( ACCOUNT_LINES ) %]
4
    <form method="post" action="opac-account-pay.pl" class="form-horizontal">
4
    <form method="post" action="opac-account-pay.pl" class="form-horizontal">
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/usermenu.inc (-1 / +1 lines)
Lines 15-21 Link Here
15
                [% ELSE %]
15
                [% ELSE %]
16
                    <li>
16
                    <li>
17
                [% END %]
17
                [% END %]
18
                <a href="/cgi-bin/koha/opac-account.pl">your fines</a></li>
18
                <a href="/cgi-bin/koha/opac-account.pl">your charges</a></li>
19
            [% END %]
19
            [% END %]
20
20
21
            [% IF ( userupdateview ) %]
21
            [% IF ( userupdateview ) %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-account.tt (-2 / +2 lines)
Lines 7-13 Link Here
7
[% SET ENABLE_OPAC_PAYMENTS = Koha.Preference('EnablePayPalOpacPayments') || plugins %]
7
[% SET ENABLE_OPAC_PAYMENTS = Koha.Preference('EnablePayPalOpacPayments') || plugins %]
8
[% SET DISPLAY_PAYMENT_BLOCK = 0 %]
8
[% SET DISPLAY_PAYMENT_BLOCK = 0 %]
9
[% INCLUDE 'doc-head-open.inc' %]
9
[% INCLUDE 'doc-head-open.inc' %]
10
<title>[% IF ( LibraryNameTitle ) %][% LibraryNameTitle | html %][% ELSE %]Koha online[% END %] catalog &rsaquo; Your fines and charges</title>
10
<title>[% IF ( LibraryNameTitle ) %][% LibraryNameTitle | html %][% ELSE %]Koha online[% END %] catalog &rsaquo; Your charges</title>
11
[% INCLUDE 'doc-head-close.inc' %]
11
[% INCLUDE 'doc-head-close.inc' %]
12
[% BLOCK cssinclude %]
12
[% BLOCK cssinclude %]
13
    [% Asset.css("css/datatables.css") | $raw %]
13
    [% Asset.css("css/datatables.css") | $raw %]
Lines 21-27 Link Here
21
    <ul class="breadcrumb">
21
    <ul class="breadcrumb">
22
        <li><a href="/cgi-bin/koha/opac-main.pl">Home</a> <span class="divider">&rsaquo;</span></li>
22
        <li><a href="/cgi-bin/koha/opac-main.pl">Home</a> <span class="divider">&rsaquo;</span></li>
23
        <li>[% IF logged_in_user %]<a href="/cgi-bin/koha/opac-user.pl">[% INCLUDE 'patron-title.inc' patron = logged_in_user %]</a>[% END %] <span class="divider">&rsaquo;</span></li>
23
        <li>[% IF logged_in_user %]<a href="/cgi-bin/koha/opac-user.pl">[% INCLUDE 'patron-title.inc' patron = logged_in_user %]</a>[% END %] <span class="divider">&rsaquo;</span></li>
24
        <li><a href="#">Your fines and charges</a></li>
24
        <li><a href="#">Your charges</a></li>
25
    </ul>
25
    </ul>
26
26
27
    <div class="container-fluid">
27
    <div class="container-fluid">
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt (-1 / +1 lines)
Lines 386-392 Link Here
386
                        [% IF ( OPACFinesTab ) %]
386
                        [% IF ( OPACFinesTab ) %]
387
                            <!-- FINES BOX -->
387
                            <!-- FINES BOX -->
388
                            [% IF ( amountoutstanding > 0 ) %]
388
                            [% IF ( amountoutstanding > 0 ) %]
389
                                <div id="opac-user-fines"> <h3>Fines and charges</h3>
389
                                <div id="opac-user-fines"> <h3>Charges</h3>
390
                                    <table class="table table-bordered table-striped">
390
                                    <table class="table table-bordered table-striped">
391
                                        <thead><tr><th colspan="2">Amount</th></tr></thead>
391
                                        <thead><tr><th colspan="2">Amount</th></tr></thead>
392
                                        <tbody>
392
                                        <tbody>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt (-2 / +1 lines)
Lines 267-273 Link Here
267
                                        Holds ([% HOLDS.count | html %])
267
                                        Holds ([% HOLDS.count | html %])
268
                                    </a>
268
                                    </a>
269
                                </li>
269
                                </li>
270
                                <li><a href="#account-tab" data-toggle="tab">Fines and charges ([% total | $Price %])</a></li>
270
                                <li><a href="#account-tab" data-toggle="tab">Charges ([% total | $Price %])</a></li>
271
                            </ul>
271
                            </ul>
272
                            <div class="tab-content">
272
                            <div class="tab-content">
273
                                <div id="checkouts-tab" class="tab-pane active">
273
                                <div id="checkouts-tab" class="tab-pane active">
274
- 

Return to bug 22627