Add initial views for tempmon

This commit is contained in:
Lance Edgar 2016-11-21 23:53:20 -06:00
parent 668191b2e9
commit a39c347ad3
7 changed files with 363 additions and 5 deletions

View 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()}

View 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()}