2015-02-27 12:25:41 +00:00
|
|
|
{% extends "base.html" %}
|
2015-02-27 08:53:51 +00:00
|
|
|
{% load i18n %}
|
2015-02-27 12:25:41 +00:00
|
|
|
{% block title %}{% trans "Compute" %} - {{ compute.name }}{% endblock %}
|
|
|
|
{% block content %}
|
2015-02-27 08:53:51 +00:00
|
|
|
<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>
|
2015-02-27 12:25:41 +00:00
|
|
|
{% endblock %}
|