Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Vladislav Rykov
THSO.server
Commits
ec413c8f
Commit
ec413c8f
authored
Jun 09, 2020
by
Vladislav Rykov
Browse files
admin device view fix
parent
2e9e8353
Changes
3
Hide whitespace changes
Inline
Side-by-side
app/app/__pycache__/views.cpython-37.pyc
View file @
ec413c8f
No preview for this file type
app/app/__pycache__/views_admin.cpython-37.pyc
View file @
ec413c8f
No preview for this file type
app/app/views_admin.py
View file @
ec413c8f
...
...
@@ -362,10 +362,11 @@ def administration_user_application_device_data(name, appkey, devid, var, dest,
if
dest
==
'graph'
:
last
=
data
.
get_last_hours
(
appkey
,
devid
,
MAX_PG_ENTRIES_GRAPH_HOURS
,
int
(
page
))
if
last
[
0
]:
arr
=
'[
["Time", "{}"],'
.
format
(
var
)
arr
=
'[
'
last
=
[
ddm
.
decode_datum
(
d
,
dev
[
3
])
for
d
in
last
[
1
]]
for
d
in
last
:
arr
+=
'[new Date('
+
str
(
d
[
0
])
+
'*1000),'
+
str
(
d
[
2
][
var
])
+
'],'
if
var
in
d
[
2
]:
arr
+=
'[new Date('
+
str
(
d
[
0
])
+
'*1000),'
+
str
(
d
[
2
][
var
])
+
'],'
arr
+=
']'
return
arr
elif
dest
==
'table'
:
...
...
@@ -375,7 +376,8 @@ def administration_user_application_device_data(name, appkey, devid, var, dest,
if
last
[
0
]:
last
=
[
ddm
.
decode_datum
(
d
,
dev
[
3
])
for
d
in
last
[
1
]]
for
d
in
last
:
t
+=
'<tr><th>'
+
d
[
1
]
+
'</th><th>'
+
str
(
d
[
2
][
var
])
+
'</th></tr>'
if
var
in
d
[
2
]:
t
+=
'<tr><th>'
+
d
[
1
]
+
'</th><th>'
+
str
(
d
[
2
][
var
])
+
'</th></tr>'
return
t
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment