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.
 
 
 
 
 
 

55 lines
3.3 KiB

{% extends 'reports/base_index.html' %}
{% block title %}Отчеты{% endblock %}
{% block page_title %}Отчеты{% endblock %}
{% block content %}
<h3 style="margin-left: 20px;font-weight: bold;">
<i class="glyphicon glyphicon-education"></i> ДЗ
</h3>
<table class="table table-hover" style="background: #ffc;">
<tr style="font-weight: bold;background: #ccc;">
<td>Курс</td>
<td>Работ</td>
<td>В процессе</td>
<td>Без задержек</td>
<td>Просрочено</td>
<td>От</td>
</tr>
{% for key, course in courses.items %}
<tr>
<td style="border-right: 1px dotted #ccc;">{{ course.title }}</td>
<td style="border-right: 1px dotted #ccc;">{{ course.students }}</td>
<td style="border-right: 1px dotted #ccc;">{{ course.process }}</td>
<td style="border-right: 1px dotted #ccc;">{{ course.success }}</td>
<td style="border-right: 1px dotted #ccc;">{{ course.expired }}</td>
<td style="border-right: 1px dotted #ccc;">{{ course.date }}</td>
</tr>
{% endfor %}
</table>
<h3 style="margin-left: 20px;margin-top:40px;font-weight: bold;border-top: 1px dotted #ccc;padding-top: 30px;">
<i class="glyphicon glyphicon-equalizer"></i> Активность пользователей
</h3>
<table class="table table-hover" style="background: #ffc;">
<tr style="font-weight: bold;background: #ccc;">
<td>Всего пользователей</td>
<td>Не активных</td>
<td>Оплатившие</td>
<td>Без активности <i>День</i></td>
<td>Без активности <i>3 Дня</i></td>
<td>Без активности <i>Неделю</i></td>
<td>Без активности <i>Месяц</i></td>
</tr>
<tr>
<td style="border-right: 1px dotted #ccc;">{{ users.all }}</td>
<td style="border-right: 1px dotted #ccc;">{{ users.no_active.int }} <i>[{{ users.no_active.proc }}%]</i></td>
<td style="border-right: 1px dotted #ccc;">{{ users.bought.all.int }} <i>[{{ users.bought.all.proc }}%]</i></td>
<td style="border-right: 1px dotted #ccc;">{{ users.bought.day.int }} <i>[{{ users.bought.day.proc }}%]</i></td>
<td style="border-right: 1px dotted #ccc;">{{ users.bought.three.int }} <i>[{{ users.bought.three.proc }}%]</i></td>
<td style="border-right: 1px dotted #ccc;">{{ users.bought.week.int }} <i>[{{ users.bought.week.proc }}%]</i></td>
<td style="border-right: 1px dotted #ccc;">{{ users.bought.month.int }} <i>[{{ users.bought.month.proc }}%]</i></td>
</tr>
</table>
<h3 style="margin-left: 20px;margin-top:40px;font-weight: bold;border-top: 1px dotted #ccc;padding-top: 30px;"><i class="glyphicon glyphicon-signal"></i> Другие отчеты</h3>
<ul class="list-group">
<a href="/management/progress_report/"><li class="list-group-item">Прогресс студентов</li></a>
</ul>
{% endblock %}