mirror of
https://github.com/retspen/webvirtcloud
synced 2025-07-31 12:41:08 +00:00
Add lib and qemu version info to compute overview
This commit is contained in:
parent
04d3568d1a
commit
c98f0b1232
3 changed files with 29 additions and 1 deletions
|
@ -42,6 +42,7 @@
|
|||
<p>{% trans "Hostname" %}</p>
|
||||
<p>{% trans "Hypervisors" %}</p>
|
||||
<p>{% trans "Emulator" %}</p>
|
||||
<p>{% trans "Version" %}</p>
|
||||
<p>{% trans "Memory" %}</p>
|
||||
<p>{% trans "Architecture" %}</p>
|
||||
<p>{% trans "Logical CPUs" %}</p>
|
||||
|
@ -55,10 +56,17 @@
|
|||
<span class="glyphicon glyphicon-chevron-right"></span>
|
||||
<span class="label label-default">{{ arch }}</span>
|
||||
{% for h in hpv %}
|
||||
<span class="label label-primary">{{ h }}</span>{% endfor %}
|
||||
<span class="label label-primary">{{ h }}</span>
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
</p>
|
||||
<p>{{ emulator }}</p>
|
||||
<p>
|
||||
<span class="label label-default">{% trans 'Qemu' %} </span>
|
||||
<span class="label label-primary">{{ version }}</span>
|
||||
<span class="label label-default">{% trans 'Libvirt' %} </span>
|
||||
<span class="label label-primary">{{ lib_version }}</span>
|
||||
</p>
|
||||
<p>{{ host_memory|filesizeformat }}</p>
|
||||
<p>{{ host_arch }}</p>
|
||||
<p>{{ logical_cpu }}</p>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue