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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/blocked-fines.inc (-1 / +1 lines)
Lines 1-6 Link Here
1
[% USE Price %]
1
[% USE Price %]
2
[% SET NoIssuesCharge = Koha.Preference('noissuescharge') %]
2
[% SET NoIssuesCharge = Koha.Preference('noissuescharge') %]
3
[% IF fines > 0 %]
3
[% IF fines and fines > 0 %]
4
    <li>
4
    <li>
5
        <span class="circ-hlt">Fees &amp; Charges:</span>
5
        <span class="circ-hlt">Fees &amp; Charges:</span>
6
        Patron has outstanding fees &amp; charges of [% fines | $Price %].
6
        Patron has outstanding fees &amp; charges of [% fines | $Price %].
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/supplier.tt (-1 / +1 lines)
Lines 353-359 function delete_contact(ev) { Link Here
353
                <p><strong>Discount: </strong>
353
                <p><strong>Discount: </strong>
354
                    [% discount | format("%.1f") %] %</p>
354
                    [% discount | format("%.1f") %] %</p>
355
                <p><strong>Tax rate: </strong>
355
                <p><strong>Tax rate: </strong>
356
                    [% 0 + tax_rate * 100 %] %</p>
356
                    [% ( tax_rate || 0 ) * 100 %] %</p>
357
                [% IF deliverytime.defined %]
357
                [% IF deliverytime.defined %]
358
                    <p><strong>Delivery time: </strong>
358
                    <p><strong>Delivery time: </strong>
359
                        [% deliverytime %] days</p>
359
                        [% deliverytime %] days</p>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/detail.tt (-1 / +1 lines)
Lines 90-96 function searchauthority() { Link Here
90
<h1>Authority #[% authid %] ([% authtypetext %])</h1>
90
<h1>Authority #[% authid %] ([% authtypetext %])</h1>
91
91
92
<div id="action">
92
<div id="action">
93
    [% IF count > 0 %]
93
    [% IF count %]
94
        Used in <a href="/cgi-bin/koha/catalogue/search.pl?type=intranet&amp;op=do_search&amp;q=an=[% authid %]">[% count %] record(s)</a>
94
        Used in <a href="/cgi-bin/koha/catalogue/search.pl?type=intranet&amp;op=do_search&amp;q=an=[% authid %]">[% count %] record(s)</a>
95
    [% ELSE %]
95
    [% ELSE %]
96
        This authority is not used in any records.
96
        This authority is not used in any records.
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/itemsearch.tt (-1 / +1 lines)
Lines 40-46 Link Here
40
        <option value="!=" >is not</option>
40
        <option value="!=" >is not</option>
41
      [% END %]
41
      [% END %]
42
    </select>
42
    </select>
43
    [% values = CGI.param(name) %]
43
    [% SET values = CGI.param(name) %]
44
    <select id="[% name %]" name="[% name %]" multiple="multiple" size="[% options.size < 4 ? options.size + 1 : 4 %]">
44
    <select id="[% name %]" name="[% name %]" multiple="multiple" size="[% options.size < 4 ? options.size + 1 : 4 %]">
45
      [% IF (values == '') %]
45
      [% IF (values == '') %]
46
        <option value="" selected="selected">
46
        <option value="" selected="selected">
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/results.tt (-1 / +1 lines)
Lines 129-135 $('#sort_by').change(function() { Link Here
129
                [% END %]
129
                [% END %]
130
                param1 += "<\/optgroup>";
130
                param1 += "<\/optgroup>";
131
            [% END %]
131
            [% END %]
132
            [% IF add_to_some_private_shelves.count > 10 or add_to_some_public_shelves.count > 10 %]
132
            [% IF ( add_to_some_private_shelves and add_to_some_private_shelves.count > 10 ) or ( add_to_some_public_shelves and add_to_some_public_shelves.count > 10 ) %]
133
                param1 += "<option value=\"morelists\">[ "+_("More lists")+" ]<\/option>";
133
                param1 += "<option value=\"morelists\">[ "+_("More lists")+" ]<\/option>";
134
            [% END %]
134
            [% END %]
135
            param1 +="<option value=\"newlist\">"+_("[ New list ]")+"<\/option>"
135
            param1 +="<option value=\"newlist\">"+_("[ New list ]")+"<\/option>"
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth-detail.tt (-1 / +1 lines)
Lines 46-52 Link Here
46
                        <h1>[% summary.mainentry %][% IF authtypetext %] ([% authtypetext %])[% END %]</h1>
46
                        <h1>[% summary.mainentry %][% IF authtypetext %] ([% authtypetext %])[% END %]</h1>
47
47
48
                        <div class="usedin">
48
                        <div class="usedin">
49
                            [% IF count > 0 %]<a href="/cgi-bin/koha/opac-search.pl?type=opac&amp;q=[% authid %]&amp;idx=an,phr">Number of records used in: [% count %]</a>[% ELSE %]This authority is not used in any records.[% END %]
49
                            [% IF count %]<a href="/cgi-bin/koha/opac-search.pl?type=opac&amp;q=[% authid %]&amp;idx=an,phr">Number of records used in: [% count %]</a>[% ELSE %]This authority is not used in any records.[% END %]
50
                        </div>
50
                        </div>
51
51
52
                        <div class="authstanza">
52
                        <div class="authstanza">
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-results.tt (-2 / +1 lines)
Lines 780-786 $(document).ready(function(){ Link Here
780
            [% END %]
780
            [% END %]
781
            param1 += "<\/optgroup>";
781
            param1 += "<\/optgroup>";
782
        [% END %]
782
        [% END %]
783
        [% IF add_to_some_private_shelves.count > 10 or add_to_some_public_shelves.count > 10 %]
783
        [% IF ( add_to_some_private_shelves and add_to_some_private_shelves.count > 10 ) or ( add_to_some_public_shelves and add_to_some_public_shelves.count > 10 ) %]
784
            param1 += "<option value=\"morelists\">[ "+_("More lists")+" ]<\/option>";
784
            param1 += "<option value=\"morelists\">[ "+_("More lists")+" ]<\/option>";
785
        [% END %]
785
        [% END %]
786
        param1 +="<option value=\"newlist\">"+_("[ New list ]")+"<\/option>"
786
        param1 +="<option value=\"newlist\">"+_("[ New list ]")+"<\/option>"
787
- 

Return to bug 18762