26 lines
677 B
HTML
26 lines
677 B
HTML
{% 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>
|
|
<th>rules</th>
|
|
<th>payments</th>
|
|
<th>traffic</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>{{ stats.users }}</td>
|
|
<td>{{ stats.rules }}</td>
|
|
<td>{{ stats.payments }}</td>
|
|
<td>{{ stats.traffic }}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
{% endblock %}
|