|
Lines 235-245
Link Here
|
| 235 |
<form method="post" action="/cgi-bin/koha/admin/aqplan.pl"> |
235 |
<form method="post" action="/cgi-bin/koha/admin/aqplan.pl"> |
| 236 |
<fieldset class="brief"> |
236 |
<fieldset class="brief"> |
| 237 |
<h4>Filter</h4> |
237 |
<h4>Filter</h4> |
| 238 |
|
238 |
[% BLOCK planning_types %] |
|
|
239 |
[% SWITCH type %] |
| 240 |
[% CASE 'MONTHS' %]<span>by months</span> |
| 241 |
[% CASE 'ITEMTYPES' %]<span>by item types</span> |
| 242 |
[% CASE 'BRANCHES' %]<span>by libraries</span> |
| 243 |
[% END %] |
| 244 |
[% END %] |
| 239 |
<ol> |
245 |
<ol> |
| 240 |
<li> |
246 |
<li> |
| 241 |
<label for="authcat"> Select planning type:</label> |
247 |
<label for="authcat"> Select planning type:</label> |
| 242 |
[% authcat_dropbox %] |
248 |
<select name="authcat" id="authcat" size="1"> |
|
|
249 |
[% FOREACH value IN authcat_dropbox.values %] |
| 250 |
[% IF ( value == authcat_dropbox.default ) %] |
| 251 |
<option value="[% value %]" selected>[% PROCESS planning_types type=value %]</option> |
| 252 |
[% ELSE %] |
| 253 |
<option value="[% value %]">[% PROCESS planning_types type=value %]</option> |
| 254 |
[% END %] |
| 255 |
[% END %] |
| 256 |
</select> |
| 243 |
</li> |
257 |
</li> |
| 244 |
<li class="radio"> |
258 |
<li class="radio"> |
| 245 |
[% IF ( show_mine ) %] |
259 |
[% IF ( show_mine ) %] |
|
Lines 275-287
Link Here
|
| 275 |
</form> |
289 |
</form> |
| 276 |
[% IF ( budget_lines ) %] |
290 |
[% IF ( budget_lines ) %] |
| 277 |
<form method="post" action="/cgi-bin/koha/admin/aqplan.pl"> |
291 |
<form method="post" action="/cgi-bin/koha/admin/aqplan.pl"> |
| 278 |
<h4>Export</h4> |
|
|
| 279 |
<fieldset class="brief"> |
292 |
<fieldset class="brief"> |
|
|
293 |
<h4>Export</h4> |
| 280 |
<ol> |
294 |
<ol> |
| 281 |
<li><label for="basename">Output to a file named: </label><input type="text" name="basename" id="basename" value="Export" /></li> |
295 |
<li><label for="basename">Output to a file named: </label><input type="text" name="basename" id="basename" value="Export" /></li> |
| 282 |
<li><label class="inline" for="MIME">Into an application |
296 |
<li><label class="inline" for="MIME">Into an application</label> |
| 283 |
</label>[% CGIextChoice %] |
297 |
<select name="MIME" id="MIME" size="1"> |
| 284 |
[% CGIsepChoice %]</li> |
298 |
[% FOREACH value IN CGIextChoice %] |
|
|
299 |
<option value="[% value %]">[% value %]</option> |
| 300 |
[% END %] |
| 301 |
</select> |
| 302 |
<select name="sep" id="sep" size="1"> |
| 303 |
[% FOREACH value IN CGIsepChoice %] |
| 304 |
<option value="[% value %]">[% value %]</option> |
| 305 |
[% END %] |
| 306 |
</select> |
| 307 |
</li> |
| 285 |
</ol> |
308 |
</ol> |
| 286 |
<fieldset class="action"> <input type="submit" value="Submit"/> |
309 |
<fieldset class="action"> <input type="submit" value="Submit"/> |
| 287 |
<input type="hidden" name="report_name" value="[% report_name %]" /> |
310 |
<input type="hidden" name="report_name" value="[% report_name %]" /> |
| 288 |
- |
|
|