Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Gelencsér Szabolcs
/
circlestack
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
10849ccc
authored
8 years ago
by
Kálmán Viktor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dashboard: fixes for datastore detail
parent
cc728f9b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
circle/dashboard/static/dashboard/datastore-details.js
+2
-2
circle/dashboard/templates/dashboard/storage/detail.html
+2
-2
No files found.
circle/dashboard/static/dashboard/datastore-details.js
View file @
10849ccc
...
...
@@ -9,7 +9,7 @@ $(function() {
data
:
{
labels
:
labels
,
datasets
:
[{
data
:
data
[
'data'
]
,
data
:
data
.
data
,
backgroundColor
:
[
"#57b257"
,
"#538ccc"
,
...
...
@@ -26,7 +26,7 @@ $(function() {
tooltips
:
{
callbacks
:
{
label
:
function
(
item
,
chartData
)
{
return
data
[
'labels'
][
item
.
index
]
+
": "
+
data
[
'readable_data'
]
[
item
.
index
];
return
data
.
labels
[
item
.
index
]
+
": "
+
data
.
readable_data
[
item
.
index
];
}
}
},
...
...
This diff is collapsed.
Click to expand it.
circle/dashboard/templates/dashboard/storage/detail.html
View file @
10849ccc
...
...
@@ -145,10 +145,10 @@
'
>
</div>
<div>
{% trans "Total
virtual machine disk usage
" %}:
{% trans "Total
disk usage of virtual machines
" %}:
<strong>
{{ stats.vm_actual_size|filesize }}
</strong>
<br
/>
{% trans "
Actual virtual machine disk usage
" %}:
{% trans "
Total virtual disk usage of virtual machines
" %}:
<strong>
{{ stats.vm_size|filesize}}
</strong>
</div>
</div>
<!-- .panel-body -->
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
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