summaryrefslogtreecommitdiffstats
path: root/pages/machines.py
diff options
context:
space:
mode:
authorLukas Metzger2020-05-23 15:08:14 +0200
committerLukas Metzger2020-05-23 15:08:14 +0200
commit751f2df144e66041ce10bd79a67eb5b86df28478 (patch)
tree3aef7922de369865b6f7e0cab000defe27ab7fcf /pages/machines.py
parentAdded machine information and some minor fixes (diff)
downloadbwlp-statistics-751f2df144e66041ce10bd79a67eb5b86df28478.tar.gz
bwlp-statistics-751f2df144e66041ce10bd79a67eb5b86df28478.tar.xz
bwlp-statistics-751f2df144e66041ce10bd79a67eb5b86df28478.zip
Added loading indication and minor ui fixes
Diffstat (limited to 'pages/machines.py')
-rw-r--r--pages/machines.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/pages/machines.py b/pages/machines.py
index b750ddc..62bbfc0 100644
--- a/pages/machines.py
+++ b/pages/machines.py
@@ -45,23 +45,23 @@ def layout():
])
]),
dbc.Row([dbc.Col([
- dcc.Graph(id='machines-graph-location')
+ dcc.Loading(dcc.Graph(id='machines-graph-location'))
])]),
dbc.Row([
dbc.Col(width=12, md=6, xl=4, children=[
- dcc.Graph(id='machines-graph-ram')
+ dcc.Loading(dcc.Graph(id='machines-graph-ram'))
]),
dbc.Col(width=12, md=6, xl=4, children=[
- dcc.Graph(id='machines-graph-realcores')
+ dcc.Loading(dcc.Graph(id='machines-graph-realcores'))
]),
dbc.Col(width=12, md=6, xl=4, children=[
- dcc.Graph(id='machines-graph-kvmstate')
+ dcc.Loading(dcc.Graph(id='machines-graph-kvmstate'))
]),
dbc.Col(width=12, xl=6, children=[
- dcc.Graph(id='machines-graph-cpumodel')
+ dcc.Loading(dcc.Graph(id='machines-graph-cpumodel'))
]),
dbc.Col(width=12, xl=6, children=[
- dcc.Graph(id='machines-graph-systemmodel')
+ dcc.Loading(dcc.Graph(id='machines-graph-systemmodel'))
])
])
])