Lines 701-706
canned reports and writing custom SQL reports.</p>
Link Here
|
701 |
[% ELSE %] |
701 |
[% ELSE %] |
702 |
<li><label for="sql_params_[% sql_param.labelid | html %]">[% sql_param.entry | html %]:</label> |
702 |
<li><label for="sql_params_[% sql_param.labelid | html %]">[% sql_param.entry | html %]:</label> |
703 |
<select name="[%- sql_param.input.name | html -%]" tabindex="1" size="1" id="[%- sql_param.input.id | html -%]"> |
703 |
<select name="[%- sql_param.input.name | html -%]" tabindex="1" size="1" id="[%- sql_param.input.id | html -%]"> |
|
|
704 |
<option value="%">All</option> |
704 |
[% FOREACH value IN sql_param.input.values %] |
705 |
[% FOREACH value IN sql_param.input.values %] |
705 |
<option value="[%- value | html -%]">[%- sql_param.input.labels.$value | html -%]</option> |
706 |
<option value="[%- value | html -%]">[%- sql_param.input.labels.$value | html -%]</option> |
706 |
[% END %] |
707 |
[% END %] |
707 |
- |
|
|