Add copying status for image detail
This commit is contained in:
parent
ecf6c6fd77
commit
8cb0308349
5
vmmd
5
vmmd
|
@ -1510,7 +1510,10 @@ class HttpClientRequestHandler(http.server.BaseHTTPRequestHandler):
|
|||
r += " <tr><td style=\"font-weight:bold\">Virtual Size<td>%s\n" % (readable_size(img.virtual_size(), ONE_MB))
|
||||
r += " <tr><td style=\"font-weight:bold\">Physical Size<td>%s\n" % (readable_size(img.physical_size(), ONE_MB))
|
||||
r += ' <tr><td> <td> \n'
|
||||
r += ' <tr><td><input style="color:red" type="submit" name="action" value="Delete"><td> '
|
||||
if img.copying():
|
||||
r += ' <tr><td style="font-weight:bold">Copying<td> \n'
|
||||
else:
|
||||
r += ' <tr><td><input style="color:red" type="submit" name="action" value="Delete"><td> '
|
||||
r += ' </table>\n'
|
||||
r += ' </form>\n'
|
||||
else:
|
||||
|
|
Loading…
Reference in New Issue