diff --git a/src/app/configuration/thingAttributesZWave.tpl.html b/src/app/configuration/thingAttributesZWave.tpl.html index ebb62b86..7b756c92 100644 --- a/src/app/configuration/thingAttributesZWave.tpl.html +++ b/src/app/configuration/thingAttributesZWave.tpl.html @@ -81,10 +81,18 @@
-
{{selectedThing.properties['zwave_wakeup_time']}}
+
+ {{selectedThing.properties['zwave_wakeup_time'] | amUtc | amLocal | amDateFormat:'dddd, MMMM Do YYYY, hh:mm:ss'}} + + +
-
{{selectedThing.properties['zwave_neighbours'].split(",").join(", ")}}
+
+ {{selectedThing.properties['zwave_neighbours'].split(",").length}} nodes + + {{selectedThing.properties['zwave_neighbours'].split(",").join(", ")}} +
diff --git a/src/app/configuration/thingConfig.js b/src/app/configuration/thingConfig.js index f5647c33..828d6f8a 100644 --- a/src/app/configuration/thingConfig.js +++ b/src/app/configuration/thingConfig.js @@ -28,7 +28,8 @@ angular.module('Config.Things', [ 'ngInputModified', 'ngPromiseExtras', 'sitemapSwitchWidget', - 'bootstrapCombo' + 'bootstrapCombo', + 'angularMoment' ]) .config(function config($stateProvider) { diff --git a/src/app/configuration/thingConfig.tpl.html b/src/app/configuration/thingConfig.tpl.html index 8d0130f0..36361152 100644 --- a/src/app/configuration/thingConfig.tpl.html +++ b/src/app/configuration/thingConfig.tpl.html @@ -235,8 +235,8 @@ -
-
diff --git a/src/languages/en-GB/thing.lang.json b/src/languages/en-GB/thing.lang.json index 16c4e02d..5220ac63 100644 --- a/src/languages/en-GB/thing.lang.json +++ b/src/languages/en-GB/thing.lang.json @@ -50,5 +50,6 @@ "ChannelUnlinkConfirm": "Are you sure you wish to unlink the item from the channel?
This will not delete the item, and you will be able to relink it later if you wish.", "ChannelDeleteTitle": "Delete Item from Channel", "ChannelDeleteConfirm": "Are you sure you wish to delete the item and unlink it from the channel?
This will completely delete the item!", - "Attributes": "Attributes" + "Attributes": "Attributes", + "RefreshItems": "Refresh Items" }