1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2024-11-01 03:54:15 +00:00
webvirtcloud/templates/compute.html

58 lines
2 KiB
HTML
Raw Normal View History

2015-02-27 08:53:51 +00:00
{% load static %}
{% load i18n %}
{% include 'header.html' %}
<body>
<div class="container-fluid">
<div class="row">
{% include 'sidebar.html' %}
<div class="col-sm-9 col-sm-offset-3 col-md-10 col-md-offset-2 main">
<button type="button" class="btn btn-success pull-right"><span class="glyphicon glyphicon-plus" aria-hidden="true"></span></button>
2015-02-27 09:28:22 +00:00
<h1 class="page-header">{{ compute.name }}</h1>
2015-02-27 08:53:51 +00:00
2015-02-27 09:28:22 +00:00
{% include 'errors.html' %}
2015-02-27 08:53:51 +00:00
2015-02-27 09:28:22 +00:00
<h4>{% trans "Basic details" %}</h4>
2015-02-27 08:53:51 +00:00
2015-02-27 09:28:22 +00:00
<div class="table-responsive">
<table class="table">
<tbody>
<tr>
<td>{% trans "Connection" %}</td>
<td>{{ uri_conn }}</td>
</tr>
<tr>
<td>{% trans "Hostname" %}</td>
<td>{{ hostname }}</td>
</tr>
<tr>
<td>{% trans "Hypervisor" %}</td>
<td>{{ hypervisor }}</td>
</tr>
<tr>
<td>{% trans "Memory" %}</td>
<td>{{ host_memory|filesizeformat }}</td>
</tr>
<tr>
<td>{% trans "Logical CPUs" %}</td>
<td>{{ logical_cpu }}</td>
</tr>
<tr>
<td>{% trans "Processor" %}</td>
<td>{{ model_cpu }}</td>
</tr>
<tr>
<td>{% trans "Architecture" %}</td>
<td>{{ host_arch }}</td>
</tr>
</tbody>
</table>
</div>
2015-02-27 08:53:51 +00:00
</div>
</div>
</div>
{% include 'footer.html' %}