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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/chart.inc (-1 / +6 lines)
Lines 1-3 Link Here
1
[% USE Koha %]
1
<div class="modal" id="chartModal" tabindex="-1" role="dialog" aria-labelledby="chartModalLabel">
2
<div class="modal" id="chartModal" tabindex="-1" role="dialog" aria-labelledby="chartModalLabel">
2
    <div class="modal-dialog modal-wide" role="document">
3
    <div class="modal-dialog modal-wide" role="document">
3
        <div class="modal-content">
4
        <div class="modal-content">
Lines 34-40 Link Here
34
                        </li>
35
                        </li>
35
36
36
                        <li>
37
                        <li>
37
                            <label for="include-all">Include all rows (ignore pagination):</label>
38
                            [% IF Koha.Preference("ReportsMaxRowsInChart") %]
39
                                <label for="include-all">Include first [% Koha.Preference("ReportsMaxRowsInChart") %] rows of full report (ignore pagination):</label>
40
                            [% ELSE %]
41
                                <label for="include-all">Include all rows (ignore pagination):</label>
42
                            [% END %]
38
                            <input id="include-all" name="chart-include-all" type="checkbox" />
43
                            <input id="include-all" name="chart-include-all" type="checkbox" />
39
                        </li>
44
                        </li>
40
45
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt (-2 lines)
Lines 719-725 canned reports and writing custom SQL reports.</p> Link Here
719
<h1>[% name | html %]</h1>
719
<h1>[% name | html %]</h1>
720
[% IF ( notes ) %]<p><span class="label">Notes:</span> [% notes | html %]</p>[% END %]
720
[% IF ( notes ) %]<p><span class="label">Notes:</span> [% notes | html %]</p>[% END %]
721
[% IF ( unlimited_total ) %]<p><span class="label">Total number of results:</span> [% unlimited_total | html %][% IF unlimited_total > limit %] ([% limit | html %] shown)[% END %].</p>[% END %]
721
[% IF ( unlimited_total ) %]<p><span class="label">Total number of results:</span> [% unlimited_total | html %][% IF unlimited_total > limit %] ([% limit | html %] shown)[% END %].</p>[% END %]
722
[% IF ( allresults.size == max_rows_in_chart ) %]Data in chart have been limited to [% max_rows_in_chart | html %] rows.[% END %]
723
722
724
<div id="sql_output" style="display:none;">
723
<div id="sql_output" style="display:none;">
725
    <span class="label">Report SQL:</span>
724
    <span class="label">Report SQL:</span>
726
- 

Return to bug 23626