Initial commit
This commit is contained in:
20
templates/accounts/login_history.html
Normal file
20
templates/accounts/login_history.html
Normal file
@@ -0,0 +1,20 @@
|
||||
{% extends 'base.html' %}
|
||||
{% block title %}登录历史{% endblock %}
|
||||
{% block content %}
|
||||
<h3 class="mb-3">最近登录历史</h3>
|
||||
<table class="table table-striped">
|
||||
<thead><tr><th>时间</th><th>IP</th><th>User-Agent</th></tr></thead>
|
||||
<tbody>
|
||||
{% for r in records %}
|
||||
<tr>
|
||||
<td>{{ r.created_at }}</td>
|
||||
<td>{{ r.ip_address|default:"-" }}</td>
|
||||
<td>{{ r.user_agent }}</td>
|
||||
</tr>
|
||||
{% empty %}
|
||||
<tr><td colspan="3" class="text-muted">暂无记录</td></tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
||||
<a class="btn btn-outline-secondary" href="{% url 'accounts:profile' %}">返回用户中心</a>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user