Add initial views for tempmon
This commit is contained in:
parent
668191b2e9
commit
a39c347ad3
7 changed files with 363 additions and 5 deletions
17
tailbone/templates/tempmon/probes/create.mako
Normal file
17
tailbone/templates/tempmon/probes/create.mako
Normal file
|
@ -0,0 +1,17 @@
|
|||
## -*- coding: utf-8 -*-
|
||||
<%inherit file="/master/create.mako" />
|
||||
|
||||
<%def name="head_tags()">
|
||||
${parent.head_tags()}
|
||||
<script type="text/javascript">
|
||||
$(function() {
|
||||
|
||||
$('.field-wrapper.client_uuid select').selectmenu();
|
||||
|
||||
$('.field-wrapper.appliance_type select').selectmenu();
|
||||
|
||||
});
|
||||
</script>
|
||||
</%def>
|
||||
|
||||
${parent.body()}
|
17
tailbone/templates/tempmon/probes/edit.mako
Normal file
17
tailbone/templates/tempmon/probes/edit.mako
Normal file
|
@ -0,0 +1,17 @@
|
|||
## -*- coding: utf-8 -*-
|
||||
<%inherit file="/master/edit.mako" />
|
||||
|
||||
<%def name="head_tags()">
|
||||
${parent.head_tags()}
|
||||
<script type="text/javascript">
|
||||
$(function() {
|
||||
|
||||
$('.field-wrapper.client_uuid select').selectmenu();
|
||||
|
||||
$('.field-wrapper.appliance_type select').selectmenu();
|
||||
|
||||
});
|
||||
</script>
|
||||
</%def>
|
||||
|
||||
${parent.body()}
|
Loading…
Add table
Add a link
Reference in a new issue