initial ups support
This commit is contained in:
parent
2958e13b5e
commit
28dcadbeef
13
.editorconfig
Normal file
13
.editorconfig
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
root = true
|
||||||
|
|
||||||
|
[*]
|
||||||
|
end_of_line = lf
|
||||||
|
insert_final_newline = true
|
||||||
|
trim_trailing_whitespace = true
|
||||||
|
|
||||||
|
[*]
|
||||||
|
charset = utf-8
|
||||||
|
|
||||||
|
[*.html]
|
||||||
|
indent_style = space
|
||||||
|
indent_size = 2
|
@ -19,6 +19,7 @@ func init() {
|
|||||||
func main() {
|
func main() {
|
||||||
readConfig()
|
readConfig()
|
||||||
go mqttLoop()
|
go mqttLoop()
|
||||||
|
go UpsConnect()
|
||||||
log.Printf("hostname: %v\n", viper.Get("hostname"))
|
log.Printf("hostname: %v\n", viper.Get("hostname"))
|
||||||
startServer()
|
startServer()
|
||||||
}
|
}
|
||||||
|
72
src/ups.go
Normal file
72
src/ups.go
Normal file
@ -0,0 +1,72 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
|
||||||
|
nut "github.com/robbiet480/go.nut"
|
||||||
|
"github.com/spf13/viper"
|
||||||
|
)
|
||||||
|
|
||||||
|
var upsClient nut.Client
|
||||||
|
var ups nut.UPS
|
||||||
|
var upsVars map[string]nut.Variable
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
viper.SetDefault("UpsHost", "localhost")
|
||||||
|
viper.SetDefault("UpsName", "ups")
|
||||||
|
viper.SetDefault("UpsUsername", "")
|
||||||
|
viper.SetDefault("UpsPassword", "")
|
||||||
|
}
|
||||||
|
|
||||||
|
func UpsConnect() {
|
||||||
|
var username, password string
|
||||||
|
var connectErr, authenticationError error
|
||||||
|
var u nut.UPS
|
||||||
|
|
||||||
|
upsClient, connectErr = nut.Connect(viper.GetString("UpsHost"))
|
||||||
|
if connectErr != nil {
|
||||||
|
fmt.Print(connectErr)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if username = viper.GetString("UpsUsername"); username == "" {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if password = viper.GetString("UpsPassword"); password == "" {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
_, authenticationError = upsClient.Authenticate(username, password)
|
||||||
|
if authenticationError != nil {
|
||||||
|
fmt.Print(authenticationError)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
upsList, listErr := upsClient.GetUPSList()
|
||||||
|
if listErr != nil {
|
||||||
|
fmt.Print(listErr)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, u = range upsList {
|
||||||
|
if u.Name == viper.GetString("UpsName") {
|
||||||
|
ups = u
|
||||||
|
fmt.Print("UPS connected")
|
||||||
|
UpsReadVars()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func UpsReadVars() {
|
||||||
|
upsVars = map[string]nut.Variable{}
|
||||||
|
for _, v := range ups.Variables {
|
||||||
|
upsVars[v.Name] = v
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func UpsReconfigure() {
|
||||||
|
ups = nut.UPS{}
|
||||||
|
upsClient = nut.Client{}
|
||||||
|
fmt.Print("UPS disconnected")
|
||||||
|
go UpsConnect()
|
||||||
|
}
|
47
src/ups_ui.go
Normal file
47
src/ups_ui.go
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"strings"
|
||||||
|
|
||||||
|
"github.com/spf13/viper"
|
||||||
|
"gopkg.in/macaron.v1"
|
||||||
|
)
|
||||||
|
|
||||||
|
func upsPage(ctx *macaron.Context) {
|
||||||
|
ctx.Data["host"] = viper.GetString("UpsHost")
|
||||||
|
ctx.Data["upsname"] = viper.GetString("UpsName")
|
||||||
|
ctx.Data["username"] = viper.GetString("UpsUsername")
|
||||||
|
ctx.Data["password"] = viper.GetString("UpsPassword")
|
||||||
|
|
||||||
|
// if ups == nil {
|
||||||
|
// ctx.Data["serverstatus"] = "Disconnected"
|
||||||
|
// ctx.Data["upsstatus"] = "unknown"
|
||||||
|
// } else {
|
||||||
|
ctx.Data["serverstatus"] = "Connected"
|
||||||
|
ctx.Data["upsstatus"] = upsVars["ups.status"].Value
|
||||||
|
ctx.Data["upsmfr"] = upsVars["device.mfr"].Value
|
||||||
|
ctx.Data["upsmodel"] = upsVars["device.model"].Value
|
||||||
|
ctx.Data["upsserial"] = upsVars["device.serial"].Value
|
||||||
|
// }
|
||||||
|
|
||||||
|
ctx.HTML(200, "ups")
|
||||||
|
}
|
||||||
|
|
||||||
|
type UPSPostForm struct {
|
||||||
|
Host string `form:"host" binding:"Required"`
|
||||||
|
UpsName string `form:"upsname" binding:"Required"`
|
||||||
|
Username string `form:"username" binding:"Required"`
|
||||||
|
Password string `form:"password" binding:"Required"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func upsPost(ctx *macaron.Context, f UPSPostForm) {
|
||||||
|
viper.Set("UpsHost", strings.ToLower(strings.TrimSpace(f.Host)))
|
||||||
|
viper.Set("UpsName", strings.TrimSpace(f.UpsName))
|
||||||
|
viper.Set("UpsUsername", strings.TrimSpace(f.Username))
|
||||||
|
viper.Set("UpsPassword", f.Password)
|
||||||
|
|
||||||
|
viper.WriteConfig()
|
||||||
|
UpsReconfigure()
|
||||||
|
|
||||||
|
upsPage(ctx)
|
||||||
|
}
|
@ -107,6 +107,8 @@ func startServer() {
|
|||||||
m.Get("/", statusPage)
|
m.Get("/", statusPage)
|
||||||
m.Get("/mqtt", mqttPage)
|
m.Get("/mqtt", mqttPage)
|
||||||
m.Post("/mqtt", binding.Bind(MQTTPostForm{}), mqttPost)
|
m.Post("/mqtt", binding.Bind(MQTTPostForm{}), mqttPost)
|
||||||
|
m.Get("/ups", upsPage)
|
||||||
|
m.Post("/ups", binding.Bind(UPSPostForm{}), upsPost)
|
||||||
m.Get("/json/status", jsonStatus)
|
m.Get("/json/status", jsonStatus)
|
||||||
m.Post("/json/outlet/:id/toggle", jsonOutletToggle)
|
m.Post("/json/outlet/:id/toggle", jsonOutletToggle)
|
||||||
|
|
||||||
|
@ -1,61 +1,66 @@
|
|||||||
<!-- Left side column. contains the logo and sidebar -->
|
<!-- Left side column. contains the logo and sidebar -->
|
||||||
<aside class="main-sidebar">
|
<aside class="main-sidebar">
|
||||||
<!-- sidebar: style can be found in sidebar.less -->
|
<!-- sidebar: style can be found in sidebar.less -->
|
||||||
<section class="sidebar">
|
<section class="sidebar">
|
||||||
|
|
||||||
<!-- sidebar menu: : style can be found in sidebar.less -->
|
<!-- sidebar menu: : style can be found in sidebar.less -->
|
||||||
<ul class="sidebar-menu" data-widget="tree">
|
<ul class="sidebar-menu" data-widget="tree">
|
||||||
|
|
||||||
{% if pageselected == "status" %}
|
{% if pageselected == "status" %}
|
||||||
<li class="active">
|
<li class="active">
|
||||||
{% else %}
|
{% else %}
|
||||||
<li>
|
<li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<a href="/">
|
<a href="/">
|
||||||
<i class="fa fa-dashboard"></i> <span>Status</span>
|
<i class="fa fa-dashboard"></i> <span>Status</span>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
{% if pageselected == "boards" %}
|
{% if pageselected == "boards" %}
|
||||||
<li class="active">
|
<li class="active">
|
||||||
{% else %}
|
{% else %}
|
||||||
<li>
|
<li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<a href="/boards">
|
<a href="/boards">
|
||||||
<i class="fa fa-sliders"></i> <span>Boards</span>
|
<i class="fa fa-sliders"></i> <span>Boards</span>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
{% if pageselected in "lan mqtt ups syslog backup restore" %}
|
|
||||||
<li class="treeview active menu-open">
|
|
||||||
{% else %}
|
|
||||||
<li class="treeview">
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
<a href="#">
|
{% if pageselected in "lan mqtt ups syslog backup restore" %}
|
||||||
<i class="fa fa-gears"></i> <span>Settings</span>
|
<li class="treeview active menu-open">
|
||||||
<span class="pull-right-container">
|
{% else %}
|
||||||
|
<li class="treeview">
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
<a href="#">
|
||||||
|
<i class="fa fa-gears"></i> <span>Settings</span>
|
||||||
|
<span class="pull-right-container">
|
||||||
<i class="fa fa-angle-left pull-right"></i>
|
<i class="fa fa-angle-left pull-right"></i>
|
||||||
</span>
|
</span>
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<ul class="treeview-menu">
|
|
||||||
<li><a href="/lan"><i class="fa fa-circle-o"></i> LAN</a></li>
|
|
||||||
|
|
||||||
{% if pageselected == "mqtt" %}
|
<ul class="treeview-menu">
|
||||||
<li class="active">
|
<li><a href="/lan"><i class="fa fa-circle-o"></i> LAN</a></li>
|
||||||
{% else %}
|
|
||||||
<li>
|
|
||||||
{% endif %}
|
|
||||||
<a href="/mqtt"><i class="fa fa-circle-o"></i> MQTT</a></li>
|
|
||||||
|
|
||||||
<li><a href="/ups"><i class="fa fa-circle-o"></i> UPS</a></li>
|
{% if pageselected == "mqtt" %}
|
||||||
<li><a href="/syslog"><i class="fa fa-circle-o"></i> syslog</a></li>
|
<li class="active">
|
||||||
<li><a href="/backup"><i class="fa fa-circle-o"></i> backup</a></li>
|
{% else %}
|
||||||
<li><a href="/restore"><i class="fa fa-circle-o"></i> restore</a></li>
|
<li>
|
||||||
</ul>
|
{% endif %}
|
||||||
</li>
|
<a href="/mqtt"><i class="fa fa-circle-o"></i> MQTT</a></li>
|
||||||
</ul>
|
|
||||||
|
{% if pageselected == "ups" %}
|
||||||
|
<li class="active">
|
||||||
|
{% else %}
|
||||||
|
<li>
|
||||||
|
{% endif %}
|
||||||
|
<a href="/ups"><i class="fa fa-circle-o"></i> UPS</a></li>
|
||||||
|
<li><a href="/syslog"><i class="fa fa-circle-o"></i> syslog</a></li>
|
||||||
|
<li><a href="/backup"><i class="fa fa-circle-o"></i> backup</a></li>
|
||||||
|
<li><a href="/restore"><i class="fa fa-circle-o"></i> restore</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<!-- /.sidebar -->
|
<!-- /.sidebar -->
|
||||||
</aside>
|
</aside>
|
@ -1,42 +1,41 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
{% include "common/common-head.html" %}
|
{% include "common/common-head.html" %}
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body class="hold-transition skin-blue sidebar-mini">
|
<body class="hold-transition skin-blue sidebar-mini">
|
||||||
<div class="wrapper">
|
<div class="wrapper">
|
||||||
|
|
||||||
{% include "common/page-header.html" %}
|
{% include "common/page-header.html" %} {% with pageselected="mqtt" %} {% include "common/sidebar-menu.html" %} {% endwith %}
|
||||||
{% with pageselected="mqtt" %}
|
|
||||||
{% include "common/sidebar-menu.html" %}
|
|
||||||
{% endwith %}
|
|
||||||
|
|
||||||
<!-- Content Wrapper. Contains page content -->
|
<!-- Content Wrapper. Contains page content -->
|
||||||
<div class="content-wrapper">
|
<div class="content-wrapper">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Main content -->
|
|
||||||
<section class="content">
|
|
||||||
|
|
||||||
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-xs-12">
|
<!-- Main content -->
|
||||||
|
<section class="content">
|
||||||
|
|
||||||
|
|
||||||
<div class="box box-info">
|
<div class="row">
|
||||||
<div class="box-header with-border">
|
<div class="col-xs-12">
|
||||||
<h3 class="box-title">MQTT configuration</h3>
|
|
||||||
</div>
|
|
||||||
<!-- /.box-header -->
|
<div class="box box-info">
|
||||||
<!-- form start -->
|
<div class="box-header with-border">
|
||||||
<form class="form-horizontal" method="post">
|
<h3 class="box-title">MQTT configuration</h3>
|
||||||
<div class="box-body">
|
</div>
|
||||||
|
<!-- /.box-header -->
|
||||||
<div class="form-group">
|
<!-- form start -->
|
||||||
<label for="schema" class="col-sm-2 control-label">Schema</label>
|
<form class="form-horizontal" method="post">
|
||||||
<div class="col-sm-10">
|
<div class="box-body">
|
||||||
<select class="form-control" id="schema" name="schema">
|
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="schema" class="col-sm-2 control-label">Schema</label>
|
||||||
|
<div class="col-sm-10">
|
||||||
|
<select class="form-control" id="schema" name="schema">
|
||||||
{% for i in schemas %}
|
{% for i in schemas %}
|
||||||
{% if i == schema %}
|
{% if i == schema %}
|
||||||
<option value="{{ i }}" selected>{{ i }}</option>
|
<option value="{{ i }}" selected>{{ i }}</option>
|
||||||
@ -45,79 +44,79 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="host" class="col-sm-2 control-label">Host</label>
|
||||||
|
<div class="col-sm-10">
|
||||||
|
<input type="text" class="form-control" id="host" name="host" placeholder="Hostname or IP address" value="{{ host }}">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="port" class="col-sm-2 control-label">Port</label>
|
||||||
|
<div class="col-sm-10">
|
||||||
|
<input type="text" class="form-control" id="port" name="port" placeholder="1883" value="{{ port }}">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="clientid" class="col-sm-2 control-label">Client ID</label>
|
||||||
|
<div class="col-sm-10">
|
||||||
|
<input type="text" class="form-control" id="clientid" name="clientid" placeholder="client id" value="{{ clientid }}">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="prefix" class="col-sm-2 control-label">Prefix</label>
|
||||||
|
<div class="col-sm-10">
|
||||||
|
<input type="text" class="form-control" id="prefix" name="prefix" placeholder="topic prefix" value="{{ prefix }}">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="username" class="col-sm-2 control-label">Username</label>
|
||||||
|
<div class="col-sm-10">
|
||||||
|
<input type="text" class="form-control" id="username" name="username" placeholder="username (if required)" value="{{ username }}">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="password" class="col-sm-2 control-label">Password</label>
|
||||||
|
<div class="col-sm-10">
|
||||||
|
<input type="password" class="form-control" id="password" name="password" placeholder="password (if required)" value="{{ password }}">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- /.box-body -->
|
||||||
|
<div class="box-footer">
|
||||||
|
<button type="submit" class="btn btn-info pull-right">Save</button>
|
||||||
|
</div>
|
||||||
|
<!-- /.box-footer -->
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<!-- /.col -->
|
||||||
</div>
|
</div>
|
||||||
|
<!-- /.row -->
|
||||||
|
|
||||||
<div class="form-group">
|
</section>
|
||||||
<label for="host" class="col-sm-2 control-label">Host</label>
|
<!-- /.content -->
|
||||||
<div class="col-sm-10">
|
|
||||||
<input type="text" class="form-control" id="host" name="host" placeholder="Hostname or IP address" value="{{ host }}">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="form-group">
|
|
||||||
<label for="port" class="col-sm-2 control-label">Port</label>
|
|
||||||
<div class="col-sm-10">
|
|
||||||
<input type="text" class="form-control" id="port" name="port" placeholder="1883" value="{{ port }}">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="form-group">
|
|
||||||
<label for="clientid" class="col-sm-2 control-label">Client ID</label>
|
|
||||||
<div class="col-sm-10">
|
|
||||||
<input type="text" class="form-control" id="clientid" name="clientid" placeholder="client id" value="{{ clientid }}">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="form-group">
|
|
||||||
<label for="prefix" class="col-sm-2 control-label">Prefix</label>
|
|
||||||
<div class="col-sm-10">
|
|
||||||
<input type="text" class="form-control" id="prefix" name="prefix" placeholder="topic prefix" value="{{ prefix }}">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="form-group">
|
|
||||||
<label for="username" class="col-sm-2 control-label">Username</label>
|
|
||||||
<div class="col-sm-10">
|
|
||||||
<input type="text" class="form-control" id="username" name="username" placeholder="username (if required)" value="{{ username }}">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="form-group">
|
|
||||||
<label for="password" class="col-sm-2 control-label">Password</label>
|
|
||||||
<div class="col-sm-10">
|
|
||||||
<input type="password" class="form-control" id="password" name="password" placeholder="password (if required)" value="{{ password }}">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- /.box-body -->
|
|
||||||
<div class="box-footer">
|
|
||||||
<button type="submit" class="btn btn-info pull-right">Save</button>
|
|
||||||
</div>
|
|
||||||
<!-- /.box-footer -->
|
|
||||||
</form>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<!-- /.col -->
|
|
||||||
</div>
|
|
||||||
<!-- /.row -->
|
|
||||||
|
|
||||||
</section>
|
|
||||||
<!-- /.content -->
|
|
||||||
</div>
|
</div>
|
||||||
<!-- /.content-wrapper -->
|
<!-- /.content-wrapper -->
|
||||||
|
|
||||||
{% include "common/footer.html" %}
|
{% include "common/footer.html" %}
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<!-- ./wrapper -->
|
<!-- ./wrapper -->
|
||||||
|
|
||||||
{% include "common/common-js.html" %}
|
{% include "common/common-js.html" %}
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
|
||||||
|
</html>
|
124
templates/ups.html
Normal file
124
templates/ups.html
Normal file
@ -0,0 +1,124 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
|
||||||
|
<head>
|
||||||
|
{% include "common/common-head.html" %}
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body class="hold-transition skin-blue sidebar-mini">
|
||||||
|
<div class="wrapper">
|
||||||
|
|
||||||
|
{% include "common/page-header.html" %} {% with pageselected="ups" %} {% include "common/sidebar-menu.html" %} {% endwith %}
|
||||||
|
|
||||||
|
<!-- Content Wrapper. Contains page content -->
|
||||||
|
<div class="content-wrapper">
|
||||||
|
|
||||||
|
<!-- Main content -->
|
||||||
|
<section class="content">
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-xs-12">
|
||||||
|
|
||||||
|
<div class="box box-info">
|
||||||
|
<div class="box-header with-border">
|
||||||
|
<h3 class="box-title">UPS configuration</h3>
|
||||||
|
</div>
|
||||||
|
<!-- /.box-header -->
|
||||||
|
<!-- form start -->
|
||||||
|
<form class="form-horizontal" method="post">
|
||||||
|
<div class="box-body">
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="serverstatus" class="col-sm-2 control-label">Server Status</label>
|
||||||
|
<div class="col-sm-10">
|
||||||
|
<input type="text" class="form-control" id="serverstatus" disabled="" value="{{ serverstatus }}">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="upsstatus" class="col-sm-2 control-label">UPS Status</label>
|
||||||
|
<div class="col-sm-10">
|
||||||
|
<input type="text" class="form-control" id="upsstatus" disabled="" value="{{ upsstatus }}">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="upsmfr" class="col-sm-2 control-label">UPS Brand</label>
|
||||||
|
<div class="col-sm-10">
|
||||||
|
<input type="text" class="form-control" id="upsmfr" disabled="" value="{{ upsmfr }}">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="upsmodel" class="col-sm-2 control-label">UPS Model</label>
|
||||||
|
<div class="col-sm-10">
|
||||||
|
<input type="text" class="form-control" id="upsmodel" disabled="" value="{{ upsmodel }}">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="upsserial" class="col-sm-2 control-label">UPS Serial</label>
|
||||||
|
<div class="col-sm-10">
|
||||||
|
<input type="text" class="form-control" id="upsserial" disabled="" value="{{ upsserial }}">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="host" class="col-sm-2 control-label">Host</label>
|
||||||
|
<div class="col-sm-10">
|
||||||
|
<input type="text" class="form-control" id="host" name="host" placeholder="Hostname or IP address" value="{{ host }}">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="upsname" class="col-sm-2 control-label">UPS Name</label>
|
||||||
|
<div class="col-sm-10">
|
||||||
|
<input type="text" class="form-control" id="upsname" name="upsname" placeholder="UPS name" value="{{ upsname }}">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="username" class="col-sm-2 control-label">Username</label>
|
||||||
|
<div class="col-sm-10">
|
||||||
|
<input type="text" class="form-control" id="username" name="username" placeholder="username (if required)" value="{{ username }}">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="password" class="col-sm-2 control-label">Password</label>
|
||||||
|
<div class="col-sm-10">
|
||||||
|
<input type="password" class="form-control" id="password" name="password" placeholder="password (if required)" value="{{ password }}">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- /.box-body -->
|
||||||
|
<div class="box-footer">
|
||||||
|
<button type="submit" class="btn btn-info pull-right">Save</button>
|
||||||
|
</div>
|
||||||
|
<!-- /.box-footer -->
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<!-- /.col -->
|
||||||
|
</div>
|
||||||
|
<!-- /.row -->
|
||||||
|
|
||||||
|
</section>
|
||||||
|
<!-- /.content -->
|
||||||
|
</div>
|
||||||
|
<!-- /.content-wrapper -->
|
||||||
|
|
||||||
|
{% include "common/footer.html" %}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<!-- ./wrapper -->
|
||||||
|
|
||||||
|
{% include "common/common-js.html" %}
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
Loading…
Reference in New Issue
Block a user