Lines 1-4
Link Here
|
1 |
[% USE KohaDates %] |
1 |
[% USE KohaDates %] |
|
|
2 |
[% BLOCK translate_report_areas %] |
3 |
[% SWITCH area %] |
4 |
[% CASE 'CIRC' %]Circulation |
5 |
[% CASE 'CAT' %]Catalogue |
6 |
[% CASE 'PAT' %]Patrons |
7 |
[% CASE 'ACQ' %]Acquisition |
8 |
[% CASE 'ACC' %]Accounts |
9 |
[% END %] |
10 |
[% END %] |
2 |
[% INCLUDE 'doc-head-open.inc' %] |
11 |
[% INCLUDE 'doc-head-open.inc' %] |
3 |
<title>Koha › Reports › Guided reports wizard |
12 |
<title>Koha › Reports › Guided reports wizard |
4 |
[% IF ( saved1 ) %]› Saved Reports |
13 |
[% IF ( saved1 ) %]› Saved Reports |
Lines 398-404
canned reports and writing custom SQL reports.</p>
Link Here
|
398 |
<legend>Step 1 of 6: Choose a module to report on,[% IF (usecache) %] Set cache expiry, [% END %] and Choose report visibility </legend> |
407 |
<legend>Step 1 of 6: Choose a module to report on,[% IF (usecache) %] Set cache expiry, [% END %] and Choose report visibility </legend> |
399 |
<ol><li><label for="area">Choose: </label><select name="area" id="area"> |
408 |
<ol><li><label for="area">Choose: </label><select name="area" id="area"> |
400 |
[% FOREACH area IN areas %] |
409 |
[% FOREACH area IN areas %] |
401 |
<option value="[% area.id %]">[% area.name %]</option> |
410 |
<option value="[% area.id %]">[% PROCESS translate_report_areas area=area.id %]</option> |
402 |
[% END %] |
411 |
[% END %] |
403 |
</select></li> |
412 |
</select></li> |
404 |
[% IF (public) %] |
413 |
[% IF (public) %] |
405 |
- |
|
|