34 lines
978 B
HTML
34 lines
978 B
HTML
{% extends "administrator/_layout.auth.html" %}
|
|
|
|
{% set title="Dashboard" %}
|
|
|
|
{% set subtitle="Statistics Overview" %}
|
|
|
|
{% block content %}
|
|
<table class="table table-bordered" width="100%">
|
|
<thead>
|
|
<tr>
|
|
<th>Users</th>
|
|
<th>Containers</th>
|
|
<th>VMs</th>
|
|
<th>Datacenters</th>
|
|
<th>Servers</th>
|
|
<th>IPs</th>
|
|
<th>Payments</th>
|
|
<th>Traffic</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>{{ stats.users }}</td>
|
|
<td>{{ stats.containers }}</td>
|
|
<td>{{ stats.vms }}</td>
|
|
<td>{{ stats.datacenters }}</td>
|
|
<td>{{ stats.servers }}</td>
|
|
<td>{{ stats.ips }}</td>
|
|
<td>{{ stats.payments }}</td>
|
|
<td>{{ stats.traffic }}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
{% endblock %}
|