Lines 220-233
Link Here
|
220 |
<td>Item type</td> |
220 |
<td>Item type</td> |
221 |
<td><input type="radio" name="Line" value="biblioitems.itemtype" /></td> |
221 |
<td><input type="radio" name="Line" value="biblioitems.itemtype" /></td> |
222 |
<td><input type="radio" name="Column" value="biblioitems.itemtype" /></td> |
222 |
<td><input type="radio" name="Column" value="biblioitems.itemtype" /></td> |
223 |
<td>[% CGIItemType %]</td> |
223 |
<td> |
|
|
224 |
<select name="Filter" size="1" id="itemtypes"> |
225 |
<option value="">All item types</option> |
226 |
[% FOREACH value IN ItemTypes.values %] |
227 |
<option value="[% value %]">[% ItemTypes.labels.$value %]</option> |
228 |
[% END %] |
229 |
</select> |
230 |
</td> |
224 |
</tr> |
231 |
</tr> |
225 |
|
232 |
|
226 |
<tr> |
233 |
<tr> |
227 |
<td>Fund</td> |
234 |
<td>Fund</td> |
228 |
<td><input type="radio" name="Line" value="aqbudgets.budget_code" /></td> |
235 |
<td><input type="radio" name="Line" value="aqbudgets.budget_code" /></td> |
229 |
<td><input type="radio" name="Column" value="aqbudgets.budget_code" /></td> |
236 |
<td><input type="radio" name="Column" value="aqbudgets.budget_code" /></td> |
230 |
<td>[% CGIBudget %]</td> |
237 |
<td> |
|
|
238 |
<select name="Filter" size="1" id="budget"> |
239 |
<option value="">All funds</option> |
240 |
[% FOREACH value IN Budgets.values %] |
241 |
<option value="[% value %]">[% Budgets.labels.$value %]</option> |
242 |
[% END %] |
243 |
</select> |
244 |
</td> |
231 |
</tr> |
245 |
</tr> |
232 |
|
246 |
|
233 |
[% IF ( hassort1 ) %] |
247 |
[% IF ( hassort1 ) %] |
Lines 235-241
Link Here
|
235 |
<td>Sort1</td> |
249 |
<td>Sort1</td> |
236 |
<td><input type="radio" name="Line" value="aqorders.sort1" /></td> |
250 |
<td><input type="radio" name="Line" value="aqorders.sort1" /></td> |
237 |
<td><input type="radio" name="Column" value="aqorders.sort1" /></td> |
251 |
<td><input type="radio" name="Column" value="aqorders.sort1" /></td> |
238 |
<td>[% CGISort1 %] </td> |
252 |
<td> |
|
|
253 |
<select name="Filter" size="1" id="sort1"> |
254 |
<option value="">All</option> |
255 |
[% FOREACH value IN Sort1.values %] |
256 |
<option value="[% value %]">[% Sort1.labels.$value %]</option> |
257 |
[% END %] |
258 |
</select> |
259 |
</td> |
239 |
</tr> |
260 |
</tr> |
240 |
[% END %] |
261 |
[% END %] |
241 |
[% IF ( hassort2 ) %] |
262 |
[% IF ( hassort2 ) %] |
Lines 243-249
Link Here
|
243 |
<td>Sort2</td> |
264 |
<td>Sort2</td> |
244 |
<td><input type="radio" name="Line" value="aqorders.sort2" /></td> |
265 |
<td><input type="radio" name="Line" value="aqorders.sort2" /></td> |
245 |
<td><input type="radio" name="Column" value="aqorders.sort2" /></td> |
266 |
<td><input type="radio" name="Column" value="aqorders.sort2" /></td> |
246 |
<td>[% CGISort2 %] </td> |
267 |
<td> |
|
|
268 |
<select name="Filter" size="1" id="sort2"> |
269 |
<option value="">All</option> |
270 |
[% FOREACH value IN Sort2.values %] |
271 |
<option value="[% value %]">[% Sort2.labels.$value %]</option> |
272 |
[% END %] |
273 |
</select> |
274 |
</td> |
247 |
</tr> |
275 |
</tr> |
248 |
[% END %] |
276 |
[% END %] |
249 |
</tbody> |
277 |
</tbody> |
Lines 281-287
Link Here
|
281 |
<label for="outputfile">To a file:</label> <input type="radio" name="output" value="file" id="outputfile" /> |
309 |
<label for="outputfile">To a file:</label> <input type="radio" name="output" value="file" id="outputfile" /> |
282 |
<label class="inline" for="basename">Named: </label> <input type="text" name="basename" id="basename" value="Export" /> |
310 |
<label class="inline" for="basename">Named: </label> <input type="text" name="basename" id="basename" value="Export" /> |
283 |
<label class="inline" for="MIME">Into an application</label> |
311 |
<label class="inline" for="MIME">Into an application</label> |
284 |
[% CGIextChoice %] |
312 |
<select name="MIME" id="MIME" size="1"> |
|
|
313 |
<option value="CSV">CSV</option> |
314 |
</select> |
285 |
<select name="sep" id="sep" size="1"> |
315 |
<select name="sep" id="sep" size="1"> |
286 |
[% FOREACH value IN CGIsepChoice.values.sort() %] |
316 |
[% FOREACH value IN CGIsepChoice.values.sort() %] |
287 |
[% IF ( value == CGIsepChoice.default ) %] |
317 |
[% IF ( value == CGIsepChoice.default ) %] |