]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/web/templates/default/conify/global/asset/copy_location_order.tt2
6e914ba74d25600adecd194c36a4d4f22cde7357
[working/Evergreen.git] / Open-ILS / web / templates / default / conify / global / asset / copy_location_order.tt2
1 [% WRAPPER default/base.tt2 %]
2 [% ctx.page_title = 'Copy Location Order' %]
3 <script src='[% ctx.media_prefix %]/js/ui/default/conify/global/asset/copy_location_order.js'> </script>
4
5 <div dojoType="dijit.layout.ContentPane" layoutAlign="client" class='oils-header-panel'>
6     <div>Copy Location Order</div>
7     <div>
8         <!--
9         <button dojoType='dijit.form.Button' onClick='acplGrid.showCreateDialog()'>New Location Order</button>
10         <button dojoType='dijit.form.Button' onClick='acplGrid.deleteSelected()'>Delete Selected</button>
11         -->
12     </div>
13 </div>
14
15 <div dojoType="dijit.layout.ContentPane" layoutAlign="client">
16     <span>Context Org Unit</span>
17     <select dojoType="openils.widget.OrgUnitFilteringSelect"
18             jsId='contextOrgSelector'
19             searchAttr='shortname'
20             labelAttr='shortname'>
21     </select>
22 </div>
23
24 <div dojoType="dijit.layout.ContentPane" layoutAlign="client">
25     <table>
26         <thead><tr><th>Name</th><th>Owning Lib</th></thead>
27         <tbody id='acpl-tbody'>
28             <tr id='acpl-tr'>
29                 <td><span name='name'/></td>
30                 <td><span name='owning_lib'/></td>
31             </tr>
32         </tbody>
33     </table>
34 </div>
35
36 [% END %]