console/SWSCloudCore/templates/administrator/dashboard.html

35 lines
978 B
HTML
Raw Normal View History

2015-12-01 02:45:57 +03:00
{% extends "administrator/_layout.auth.html" %}
2016-05-11 02:26:04 +03:00
{% set title="Dashboard" %}
2015-12-01 02:45:57 +03:00
2016-05-11 02:26:04 +03:00
{% set subtitle="Statistics Overview" %}
2015-12-01 02:45:57 +03:00
{% block content %}
2016-05-11 02:26:04 +03:00
<table class="table table-bordered" width="100%">
2015-12-01 02:45:57 +03:00
<thead>
<tr>
2016-05-11 02:26:04 +03:00
<th>Datacenters</th>
<th>Servers</th>
<th>IPs</th>
2016-05-22 12:36:54 +03:00
<th>Users</th>
<th>Containers</th>
<th>VMs</th>
2016-05-11 02:26:04 +03:00
<th>Payments</th>
<th>Traffic</th>
2015-12-01 02:45:57 +03:00
</tr>
</thead>
<tbody>
<tr>
2016-05-11 02:26:04 +03:00
<td>{{ stats.datacenters }}</td>
<td>{{ stats.servers }}</td>
2016-01-17 21:02:48 +03:00
<td>{{ stats.ips }}</td>
2016-05-22 12:36:54 +03:00
<td>{{ stats.users }}</td>
<td>{{ stats.containers }}</td>
<td>{{ stats.vms }}</td>
2015-12-01 02:45:57 +03:00
<td>{{ stats.payments }}</td>
<td>{{ stats.traffic }}</td>
</tr>
</tbody>
</table>
{% endblock %}