[PATCH] Add missing column name in Storage tab

Add %Used back to the right of the Name column since it got dropped when moving to new UI. Socorro Stoppler (1): Add %Used back to the right of Name column in Storage tab src/wok/plugins/kimchi/ui/pages/storage.html.tmpl | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) -- 1.9.1

Signed-off-by: Socorro Stoppler <socorro@linux.vnet.ibm.com> --- src/wok/plugins/kimchi/ui/pages/storage.html.tmpl | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/wok/plugins/kimchi/ui/pages/storage.html.tmpl b/src/wok/plugins/kimchi/ui/pages/storage.html.tmpl index 7b51a8b..dfc006e 100644 --- a/src/wok/plugins/kimchi/ui/pages/storage.html.tmpl +++ b/src/wok/plugins/kimchi/ui/pages/storage.html.tmpl @@ -37,7 +37,10 @@ <div class="grid-control"><input type="text" class="filter" placeholder="$_("Filter")"></div> <div id='storageGrid'> <div> - <span class="storage-name">$_("Name")</span> + <span class="storage-name"> + <span>$_("Name")</span> + <span class="usage">$_("%Used")</span> + </span> <span class="storage-state" >$_("State")</span> <span class="storage-type">$_("Type")</span> <span class="storage-capacity">$_("Capacity")</span> -- 1.9.1

Applied. Thanks. Regards, Aline Manera
participants (2)
-
Aline Manera
-
Socorro Stoppler