{% extends "base.html" %} {% block title %}操作日志 - 学生课程管理系统{% endblock %} {% block content %}

操作日志

{% if current_user.has_permission('log_export') %} 导出{% endif %}
{% for log in logs %} {% endfor %}
ID操作人操作类型操作详情IP地址操作时间
{{ log.id }} {{ log.user.real_name if log.user else '-' }} {{ log.operation_type }} {{ log.operation_detail or '-' }} {{ log.ip_address or '-' }} {{ log.created_at.strftime('%Y-%m-%d %H:%M:%S') if log.created_at else '-' }}
{% if total > per_page %} {% endif %}
{% endblock %}