2015-12-01 02:45:57 +03:00
|
|
|
{% extends "administrator/_layout.auth.html" %}
|
|
|
|
|
|
|
|
{% block title %}Dashboard{% endblock %}
|
|
|
|
|
|
|
|
{% block subtitle %}Statistics Overview{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<table class="table table-bordered">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>users</th>
|
2016-01-17 21:02:48 +03:00
|
|
|
<th>containers</th>
|
|
|
|
<th>ips</th>
|
2015-12-01 02:45:57 +03:00
|
|
|
<th>payments</th>
|
|
|
|
<th>traffic</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>{{ stats.users }}</td>
|
2016-01-17 21:02:48 +03:00
|
|
|
<td>{{ stats.containers }}</td>
|
|
|
|
<td>{{ stats.ips }}</td>
|
2015-12-01 02:45:57 +03:00
|
|
|
<td>{{ stats.payments }}</td>
|
|
|
|
<td>{{ stats.traffic }}</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
{% endblock %}
|