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 822-828 Link Here
822
                            <input type='hidden' name='reportname' value='[% reportname | html %]' />
822
                            <input type='hidden' name='reportname' value='[% reportname | html %]' />
823
                            <input type='hidden' name='group' value='[% group | html %]' />
823
                            <input type='hidden' name='group' value='[% group | html %]' />
824
                            <input type='hidden' name='subgroup' value='[% subgroup | html %]' />
824
                            <input type='hidden' name='subgroup' value='[% subgroup | html %]' />
825
                            <input type='hidden' name='notes' value='[% notes | html %]' />
825
                            <input type='hidden' name='notes' value='[% notes | $raw %]' />
826
                            <input type='hidden' name='cache_expiry' value='[% cache_expiry | html %]' />
826
                            <input type='hidden' name='cache_expiry' value='[% cache_expiry | html %]' />
827
                            <input type='hidden' name='cache_expiry_units' value='[% cache_expiry_units | html %]' />
827
                            <input type='hidden' name='cache_expiry_units' value='[% cache_expiry_units | html %]' />
828
                            <input type='hidden' name='public' value='[% public | html %]' />
828
                            <input type='hidden' name='public' value='[% public | html %]' />
Lines 861-867 Link Here
861
                            <input type='hidden' name='phase' value='Run this report' />
861
                            <input type='hidden' name='phase' value='Run this report' />
862
                            <h1>Enter parameters for report [% name | html %]:</h1>
862
                            <h1>Enter parameters for report [% name | html %]:</h1>
863
                            [% IF ( notes ) %]
863
                            [% IF ( notes ) %]
864
                                <p>[% notes | html %]</p>
864
                                <p>[% notes | $raw %]</p>
865
                            [% END %]
865
                            [% END %]
866
                            <fieldset class="rows">
866
                            <fieldset class="rows">
867
                                <ol>
867
                                <ol>
Lines 910-916 Link Here
910
                    <h1>[% name | html %] <span class="report_heading_id"><span class="report_label">Report ID:</span> <span class="report_number">[% id | html %]</span></span></h1>
910
                    <h1>[% name | html %] <span class="report_heading_id"><span class="report_label">Report ID:</span> <span class="report_number">[% id | html %]</span></span></h1>
911
                    <div class="page-section">
911
                    <div class="page-section">
912
                        [% IF ( notes ) %]
912
                        [% IF ( notes ) %]
913
                            <p><span class="label">Notes:</span> [% notes | html %]</p>
913
                            <p><span class="label">Notes:</span> [% notes | $raw %]</p>
914
                        [% END %]
914
                        [% END %]
915
                        [% IF ( unlimited_total ) %]
915
                        [% IF ( unlimited_total ) %]
916
                            <p>
916
                            <p>
Lines 1276-1282 Link Here
1276
                                [% END # /IF (usecache) %]
1276
                                [% END # /IF (usecache) %]
1277
                                <li>
1277
                                <li>
1278
                                    <label for="notes">Notes:</label>
1278
                                    <label for="notes">Notes:</label>
1279
                                    <textarea id="notes" name="notes" cols="50" rows="2">[% notes | html %]</textarea>
1279
                                    <textarea id="notes" name="notes" cols="50" rows="2">[% notes | $raw %]</textarea>
1280
                                </li>
1280
                                </li>
1281
                            </ol>
1281
                            </ol>
1282
                        </fieldset> <!-- /.rows -->
1282
                        </fieldset> <!-- /.rows -->
Lines 1304-1310 Link Here
1304
                [% IF saved_results %]
1304
                [% IF saved_results %]
1305
                    <h1>Saved report results</h1>
1305
                    <h1>Saved report results</h1>
1306
                    <h2>[% name | html %]</h2>
1306
                    <h2>[% name | html %]</h2>
1307
                    <p>[% notes | html %]</p>
1307
                    <p>[% notes | $raw %]</p>
1308
                    <table>
1308
                    <table>
1309
                        [% FOREACH rows IN saved_results %]
1309
                        [% FOREACH rows IN saved_results %]
1310
                            <tr>
1310
                            <tr>
Lines 1324-1330 Link Here
1324
                            [% IF ( notes ) %]
1324
                            [% IF ( notes ) %]
1325
                                <li>
1325
                                <li>
1326
                                    <span class="label">Notes:</span>
1326
                                    <span class="label">Notes:</span>
1327
                                    [% notes | html %]
1327
                                    [% notes | $raw %]
1328
                                </li>
1328
                                </li>
1329
                            [% ELSE %]
1329
                            [% ELSE %]
1330
                            [% END %]
1330
                            [% END %]
Lines 1390-1396 Link Here
1390
                                [% END %]
1390
                                [% END %]
1391
                                <li>
1391
                                <li>
1392
                                    <label for="notes">Notes:</label>
1392
                                    <label for="notes">Notes:</label>
1393
                                    <textarea id="notes" name="notes" cols="50" rows="2">[% notes | html %]</textarea>
1393
                                    <textarea id="notes" name="notes" cols="50" rows="2">[% notes | $raw %]</textarea>
1394
                                </li>
1394
                                </li>
1395
                            </ol>
1395
                            </ol>
1396
                        </fieldset> <!-- /.rows -->
1396
                        </fieldset> <!-- /.rows -->
Lines 2509-2511 Link Here
2509
        </ul>
2509
        </ul>
2510
    </div>
2510
    </div>
2511
[% END %]
2511
[% END %]
2512
- 
2512

Return to bug 23978