From 9195e578d1490ed188df3a951fa4f5d9f1de8147 Mon Sep 17 00:00:00 2001 From: dcollin Date: Fri, 4 Dec 2015 05:51:02 +0100 Subject: [PATCH] Some more html structure in configure page Former-commit-id: f145433d81f55134c474c139890300799298844b --- web-resource/configure.html | 79 ++++++++++++++++++++++++++++++++++++- web-resource/css/main.css | 4 ++ 2 files changed, 81 insertions(+), 2 deletions(-) diff --git a/web-resource/configure.html b/web-resource/configure.html index 3e33fd40..4ddb438d 100644 --- a/web-resource/configure.html +++ b/web-resource/configure.html @@ -45,8 +45,83 @@

Configuration

- - +
+
Profile Information
+
+
+
+ + +
+
+ +
+
+
+
+ +
+
Local Sensors
+
+ This is a local list of sensors connected to this node. +
+ + + + + + + {{#localSensor}} + + + + + + {{/localSensor}} +
NameTypeConfiguration
{{.name}}{{.type}}{{.config}}
+
+ +
+
External Users
+
+ Add or remove users that you want to synchronized data with. +
+ + + + + + + {{#extUsers}} + + + + + + {{/extUsers}} +
UsernameHostnamePort
{{.username}}{{.host}}{{.port}}
+
+ +
+
External Sensors
+
+ This is a read only list of synchronized sensors from external users. +
+ + + + + + + {{#localSensor}} + + + + + + {{/localSensor}} +
NameTypeConfiguration
{{.name}}{{.type}}{{.config}}
+
diff --git a/web-resource/css/main.css b/web-resource/css/main.css index 38d4177f..ed9bf766 100644 --- a/web-resource/css/main.css +++ b/web-resource/css/main.css @@ -103,3 +103,7 @@ body { display: inline-block; border-radius: 50%; } + +.panel{ + margin-bottom: 70px; +}