]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/vandelay/inc/queueselect.tt2
Vandelay: Rewrite Inspect Queues Interface
[working/Evergreen.git] / Open-ILS / src / templates / vandelay / inc / queueselect.tt2
1 <!-- Form for choosing which queue to view -->
2 <h1>[% l('Select a Queue to Inspect') %]</h1><br/>
3 [% l('Queue Type') %]
4 <select jsId='vlQueueSelectType' dojoType='dijit.form.FilteringSelect' onchange='vlShowQueueSelect();'>
5     <option value='bib' selected='selected'>[% l('Bibliographic Records') %]</option>
6     <option value='bib-acq'>[% l('Acquisitions Records') %]</option>
7     <option value='auth'>[% l('Authority Records') %]</option>
8 </select>
9 <table>
10     <thead>
11         <tr>
12             <td><input type="checkbox" disabled="true" /> &nbsp;</td>
13             <td>[% l('Queue') %]</td>
14         </tr>
15     </thead>
16     <tbody id="vlQueueSelectList">
17     </tbody>
18     <tfoot>
19         <tr>
20             <td>&nbsp;</td>
21             <td><input type="button" value="[% l('Delete Selected') %]" onclick='
22                 if(confirm("[% l('Are you sure you want to delete the selected queues?') %]")) {
23                     vlDeleteSelectedQueues();
24                 }' /></td>
25         </tr>
26     </tfoot>
27 </table>