From 2b04a891003921e43cb281f92de4c9ced07fbd92 Mon Sep 17 00:00:00 2001 From: catborise Date: Wed, 24 Oct 2018 14:09:29 +0300 Subject: [PATCH] make some details showing style popover --- instances/templates/instance.html | 30 +++++++++++++++++++++++------- 1 file changed, 23 insertions(+), 7 deletions(-) diff --git a/instances/templates/instance.html b/instances/templates/instance.html index 2cae09d..8747807 100644 --- a/instances/templates/instance.html +++ b/instances/templates/instance.html @@ -639,10 +639,8 @@ - - @@ -650,15 +648,26 @@ {% for disk in disks %} - - - + - -
{% trans "Device" %}{% trans "Format" %} {% trans "Used" %} {% trans "Capacity" %}{% trans "Bus" %} {% trans "Storage" %} {% trans "Source" %} {% trans "Action" %}
{{ disk.dev }}
{{ disk.target }}
{{ disk.format }} + + {{ disk.dev }} +
+ {{ disk.target }} +
{{ disk.used | filesizeformat}} {{ disk.size | filesizeformat }}{{ disk.bus }} {{ disk.storage }} {{ disk.path }} +
{% csrf_token %} @@ -1623,5 +1632,12 @@ $("#logs_table > tbody").html(logs); }); } + + {% endblock %}