You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
2.3 KiB
70 lines
2.3 KiB
{% extends 'c_admin/base.html' %}
|
|
{% load staticfiles %}
|
|
|
|
{% block styles %}
|
|
.blank_row {
|
|
height: 35px !important; /* Overwrite any previous rules */
|
|
background-color: #FFFFFF;
|
|
}
|
|
{% endblock styles %}
|
|
|
|
{% block body %}
|
|
<div class="box span10">
|
|
<div class="box-header well">
|
|
<h2><i class="icon-arrow-down"></i>Статистика пользователей</h2>
|
|
</div>
|
|
<div class="box-content">
|
|
<table class="table table-hover table table-bordered table-striped">
|
|
<colgroup>
|
|
<col width="33%">
|
|
<col width="33%">
|
|
<col width="33%">
|
|
</colgroup>
|
|
<tbody>
|
|
<tr>
|
|
<th>Всего зарегистрировано</th>
|
|
</tr>
|
|
<tr>
|
|
<td>аккаунтов</td>
|
|
<td>{{ accounts_overall }}</td>
|
|
</tr>
|
|
<tr>
|
|
<td>страниц компаний</td>
|
|
<td>{{ companies_overall }}</td>
|
|
</tr>
|
|
<tr class="blank_row">
|
|
<td colspan="2"></td>
|
|
</tr>
|
|
<tr>
|
|
<tr>
|
|
<td>За сегодня</td>
|
|
<td>{{ current_day }}</td>
|
|
</tr>
|
|
<tr>
|
|
<td>За вчера</td>
|
|
<td>{{ prev_day }}</td>
|
|
</tr>
|
|
<tr>
|
|
<td>За текущий месяц</td>
|
|
<td>{{ current_month }}</td>
|
|
</tr>
|
|
<tr>
|
|
<td>За прошлый месяц</td>
|
|
<td>{{ prev_month }}</td>
|
|
</tr>
|
|
<tr class="blank_row">
|
|
<td colspan="2"></td>
|
|
</tr>
|
|
<td>За текущий год</td>
|
|
<td>{{ current_year }}</td>
|
|
</tr>
|
|
<tr>
|
|
<td>За прошлый год</td>
|
|
<td>{{ prev_year }}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
|