diff --git a/weed/server/volume_server_ui/templates.go b/weed/server/volume_server_ui/templates.go
index 1c1394369..a3175e9ca 100644
--- a/weed/server/volume_server_ui/templates.go
+++ b/weed/server/volume_server_ui/templates.go
@@ -151,9 +151,9 @@ var StatusTpl = template.Must(template.New("status").Funcs(funcMap).Parse(`
{{ .Id }} |
{{ .Collection }} |
- {{ .Size }} Bytes |
+ {{ bytesToHumanReadble .Size }} |
{{ .FileCount }} |
- {{ .DeleteCount }} / {{.DeletedByteCount}} Bytes |
+ {{ .DeleteCount }} / {{bytesToHumanReadble .DeletedByteCount}} |
{{ .Ttl }} |
{{ .ReadOnly }} |
@@ -181,9 +181,9 @@ var StatusTpl = template.Must(template.New("status").Funcs(funcMap).Parse(`
{{ .Id }} |
{{ .Collection }} |
- {{ .Size }} Bytes |
+ {{ bytesToHumanReadble .Size }} |
{{ .FileCount }} |
- {{ .DeleteCount }} / {{.DeletedByteCount}} Bytes |
+ {{ .DeleteCount }} / {{bytesToHumanReadble .DeletedByteCount}} |
{{ .RemoteStorageName }} |
{{ .RemoteStorageKey }} |
@@ -209,7 +209,7 @@ var StatusTpl = template.Must(template.New("status").Funcs(funcMap).Parse(`
{{ .VolumeId }} |
{{ .Collection }} |
- {{ .ShardSize }} Bytes |
+ {{ bytesToHumanReadble .ShardSize }} |
{{ .ShardIdList }} |
{{ .CreatedAt.Format "02 Jan 06 15:04 -0700" }} |