]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/templates/conify/global/config/remote_account.tt2
LP1873286: Fix Bad End Tags
[Evergreen.git] / Open-ILS / src / templates / conify / global / config / remote_account.tt2
1 [% WRAPPER base.tt2 %]
2 [% ctx.page_title = l('Remote Accounts') | html %]
3 <div dojoType="dijit.layout.ContentPane" layoutAlign="top" class='oils-header-panel'>
4     <div>[% ctx.page_title %]</div>
5     <div>
6         <button dojoType='dijit.form.Button' onClick='raGrid.showCreateDialog()'>[% l('New') %]</button>
7         <button dojoType='dijit.form.Button' onClick='raGrid.deleteSelected()'>[% l('Delete Selected') %]</button>
8     </div>
9 </div>
10
11 <table
12     id="raGrid"
13     jsid="raGrid"
14     dojoType="openils.widget.FlattenerGrid"
15     columnPersistKey='"conify.config.remote_account"'
16     autoHeight="true"
17     editOnEnter="true"
18     editStyle="pane"
19     showLoadFilter="true"
20     fmClass="'cracct'"
21     _autoCoreFields="true"
22     suppressEditFields="['id', 'last_activity']"
23     defaultSort="['owner_sn', 'label']"
24     query="{id : {'!=':0}}">
25     <thead>
26         <tr>
27             <th field="id"          fpath="id"></th>
28             <th field="owner_sn"    fpath="owner.shortname" ffilter="true"></th>
29             <th field="label"       fpath="label" ffilter="true"></th>
30             <th field="host"        fpath="host" ffilter="true"></th>
31             <th field="username"    fpath="username" ffilter="true"></th>
32             <th field="password"    fpath="password" ffilter="true"></th>
33             <th field="account"     fpath="account" ffilter="true"></th>
34             <th field="path"        fpath="path" ffilter="true"></th>
35         </tr>
36     </thead>
37 </table>
38
39 <script>
40     dojo.require('openils.widget.FlattenerGrid');
41 </script>
42
43 [% END %]
44