2021-03-02 15:56:00 +00:00

27 lines
595 B
HTML

{% extends 'layouts/master.html' %}
{% block title %}View{% endblock %}
{% block body %}
<h1>登录时间统计</h1>
<table class="table table-hover">
<thead>
<tr>
<th scope="col">账号</th>
<th scope="col">上次登录时间</th>
<th scope="col">上次登陆时长</th>
<th scope="col">总时长</th>
<td></td>
</tr>
</thead>
<tbody>
{% for contact in contacts %}
<tr>
<td>{{ contact['account'] }}</td>
<td>{{ contact['login'] }}</td>
<td>{{ contact['duration']}}</td>
<td>{{ contact['total']}}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}