{% extends "meta.html" %}
{% block title %}
<title>审计日志 - {{cfg("sr.ht", "site-name")}} meta</title>
{% endblock %}
{% block content %}
<div class="row">
<section class="col-md-12">
<h3>审计日志</h3>
<table class="table">
<thead>
<tr>
<th>IP 地址</th>
<th>操作</th>
<th>详情</th>
<th>时间</th>
</tr>
</thead>
<tbody>
{% for log in audit_log %}
<tr>
<td>{{log.ip_address}}</td>
<td>{{log.event_type}}</td>
<td>{{log.details or ""}}</td>
<td>{{log.created | date }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</section>
</div>
{% endblock %}