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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt (-8 / +8 lines)
Lines 4-9 Link Here
4
[% USE KohaDates %]
4
[% USE KohaDates %]
5
[% USE Koha %]
5
[% USE Koha %]
6
[% USE TablesSettings %]
6
[% USE TablesSettings %]
7
[% USE HtmlScrubber %]
7
[% USE JSON.Escape %]
8
[% USE JSON.Escape %]
8
[% PROCESS 'i18n.inc' %]
9
[% PROCESS 'i18n.inc' %]
9
[% SET footerjs = 1 %]
10
[% SET footerjs = 1 %]
Lines 849-855 Link Here
849
                            <input type="hidden" name="reportname" value="[% reportname | html %]" />
850
                            <input type="hidden" name="reportname" value="[% reportname | html %]" />
850
                            <input type="hidden" name="group" value="[% group | html %]" />
851
                            <input type="hidden" name="group" value="[% group | html %]" />
851
                            <input type="hidden" name="subgroup" value="[% subgroup | html %]" />
852
                            <input type="hidden" name="subgroup" value="[% subgroup | html %]" />
852
                            <input type="hidden" name="notes" value="[% notes | $raw %]" />
853
                            <input type="hidden" name="notes" value="[% notes | scrub_html type => 'note' | $raw %]" />
853
                            <input type="hidden" name="cache_expiry" value="[% cache_expiry | html %]" />
854
                            <input type="hidden" name="cache_expiry" value="[% cache_expiry | html %]" />
854
                            <input type="hidden" name="cache_expiry_units" value="[% cache_expiry_units | html %]" />
855
                            <input type="hidden" name="cache_expiry_units" value="[% cache_expiry_units | html %]" />
855
                            <input type="hidden" name="public" value="[% public | html %]" />
856
                            <input type="hidden" name="public" value="[% public | html %]" />
Lines 883-889 Link Here
883
                            <input type="hidden" name="id" value="[% id | html %]" />
884
                            <input type="hidden" name="id" value="[% id | html %]" />
884
                            <h1>Enter parameters for report [% name | html %]:</h1>
885
                            <h1>Enter parameters for report [% name | html %]:</h1>
885
                            [% IF ( notes ) %]
886
                            [% IF ( notes ) %]
886
                                <p>[% notes | $raw %]</p>
887
                                <p>[% notes | scrub_html type => 'note' | $raw %]</p>
887
                            [% END %]
888
                            [% END %]
888
                            <fieldset class="rows">
889
                            <fieldset class="rows">
889
                                <ol>
890
                                <ol>
Lines 943-949 Link Here
943
                    >
944
                    >
944
                    <div class="page-section">
945
                    <div class="page-section">
945
                        [% IF ( notes ) %]
946
                        [% IF ( notes ) %]
946
                            <p><span class="label">Notes:</span> [% notes | $raw %]</p>
947
                            <p><span class="label">Notes:</span> [% notes | scrub_html type => 'note' | $raw %]</p>
947
                        [% END %]
948
                        [% END %]
948
                        [% IF ( unlimited_total ) %]
949
                        [% IF ( unlimited_total ) %]
949
                            <p>
950
                            <p>
Lines 1415-1421 Link Here
1415
                                [% END # /IF (usecache) %]
1416
                                [% END # /IF (usecache) %]
1416
                                <li>
1417
                                <li>
1417
                                    <label for="notes">Notes:</label>
1418
                                    <label for="notes">Notes:</label>
1418
                                    <textarea id="notes" name="notes" cols="50" rows="2">[% notes | $raw %]</textarea>
1419
                                    <textarea id="notes" name="notes" cols="50" rows="2">[% notes | scrub_html type => 'note' | $raw %]</textarea>
1419
                                </li>
1420
                                </li>
1420
                            </ol>
1421
                            </ol>
1421
                        </fieldset>
1422
                        </fieldset>
Lines 1445-1451 Link Here
1445
                [% IF saved_results %]
1446
                [% IF saved_results %]
1446
                    <h1>Saved report results</h1>
1447
                    <h1>Saved report results</h1>
1447
                    <h2>[% name | html %]</h2>
1448
                    <h2>[% name | html %]</h2>
1448
                    <p>[% notes | $raw %]</p>
1449
                    <p>[% notes | scrub_html type => 'note' | $raw %]</p>
1449
                    <table>
1450
                    <table>
1450
                        [% FOREACH rows IN saved_results %]
1451
                        [% FOREACH rows IN saved_results %]
1451
                            <tr>
1452
                            <tr>
Lines 1465-1471 Link Here
1465
                            [% IF ( notes ) %]
1466
                            [% IF ( notes ) %]
1466
                                <li>
1467
                                <li>
1467
                                    <span class="label">Notes:</span>
1468
                                    <span class="label">Notes:</span>
1468
                                    [% notes | $raw %]
1469
                                    [% notes | scrub_html type => 'note' | $raw %]
1469
                                </li>
1470
                                </li>
1470
                            [% ELSE %]
1471
                            [% ELSE %]
1471
1472
Lines 1533-1539 Link Here
1533
                                [% END %]
1534
                                [% END %]
1534
                                <li>
1535
                                <li>
1535
                                    <label for="notes">Notes:</label>
1536
                                    <label for="notes">Notes:</label>
1536
                                    <textarea id="notes" name="notes" cols="50" rows="2">[% notes | $raw %]</textarea>
1537
                                    <textarea id="notes" name="notes" cols="50" rows="2">[% notes | scrub_html type => 'note' | $raw %]</textarea>
1537
                                </li>
1538
                                </li>
1538
                            </ol>
1539
                            </ol>
1539
                        </fieldset>
1540
                        </fieldset>
1540
- 

Return to bug 23978