]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/web/templates/default/conify/global/config/global_flag.tt2
When checking postgresql version use postgres db
[working/Evergreen.git] / Open-ILS / web / templates / default / conify / global / config / global_flag.tt2
1 [% WRAPPER default/base.tt2 %]
2 [% ctx.page_title = 'Global Flags' %]
3 <div dojoType="dijit.layout.ContentPane" layoutAlign="client">
4     <div dojoType="dijit.layout.ContentPane" layoutAlign="top" class='oils-header-panel'>
5         <div>Global Flags</div>
6         <div></div>
7     </div>
8     <div>
9     <table  jsId="gfGrid"
10             dojoType="openils.widget.AutoGrid"
11             fieldOrder="['name', 'label', 'enabled', 'value']"
12             suppressFields="['name']"
13             query="{name: '*'}"
14             defaultCellWidth='30'
15             fmClass='cgf'
16             hideSelector='true'
17             editOnEnter='true'/>
18 </div>
19
20 <script type="text/javascript">
21     dojo.require('openils.Util');
22     dojo.require('openils.widget.AutoGrid');
23     openils.Util.addOnLoad( 
24         function() { 
25             gfGrid.overrideWidgetArgs.name = {readOnly : true};
26             gfGrid.loadAll(); 
27         } 
28     );
29 </script>
30 [% END %]
31
32