{% extends 'grades/base.html' %}
{% block title %}系统监控{% endblock %}
{% block breadcrumb %}
系统监控{% endblock %}
{% block content %}
系统监控
| 排名 | 用户 | 操作次数 |
{% for u in active_users %}
|
{% if forloop.counter <= 3 %}
{{ forloop.counter }}
{% else %}
{{ forloop.counter }}
{% endif %}
|
{{ u.user__username }} |
{{ u.cnt }} |
{% empty %}
| 暂无数据 |
{% endfor %}
| 模块 | 操作次数 | 占比 |
{% for s in module_stats %}
| {{ s.module }} |
{{ s.cnt }} |
{% widthratio s.cnt total_ops 100 %}%
|
{% empty %}
| 暂无数据 |
{% endfor %}
{% endblock %}
{% block extra_js %}
{% endblock %}