Files
wehub-resource-sync a21fa4e11b
Go / Build (push) Failing after 1s
chore: import upstream snapshot with attribution
2026-07-13 12:30:21 +08:00

84 lines
3.8 KiB
Go

<div class="container-fluid">
<div class="panel panel-default">
<div class="panel-body">
<div class="row">
<form action="" method="get">
<div class="col-md-3">
<div class="input-group">
</div>
</div>
<div class="col-md-3">
<div class="input-group">
<span class="input-group-addon"> 日志级别</span>
<select class="form-control" name="level">
<option value="">全部</option>
<option value="7">DEBUG</option>
<option value="6">INFO</option>
<option value="4">WARNING</option>
<option value="3">ERROR</option>
</select>
</div>
</div>
<div class="col-md-3">
<div class="input-group">
<span class="input-group-addon"> 用户名 </span>
<input class="form-control" name="username" type="text" value="{{.username}}" placeholder="用户名">
</div>
</div>
<div class="col-md-3">
<div class="input-group">
<input class="form-control" name="message" type="text" value="{{.message}}" placeholder="描述">
<span class="input-group-btn">
<button type="submit" class="btn btn-primary"><i class="glyphicon glyphicon-search"></i></button>
</span>
</div>
</div>
</form>
</div>
</div>
<div class="table-responsive">
<table class="table table-bordered">
<thead>
<tr>
<th class="w7p">ID</th>
<th class="w10p">级别</th>
<th class="w9p">用户</th>
<th>描述</th>
<th class="w20p">动作</th>
<th class="w10p">IP</th>
<th class="w15p">时间</th>
</tr>
</thead>
<tbody>
{{range $log := .logs}}
<tr>
<td class="center">{{$log.log_id}}</td>
<td class="center">
{{if eq $log.level "3"}}<span class="label label-danger">ERROR</span>{{end}}
{{if eq $log.level "4"}}<span class="label label-warning">WARNING</span>{{end}}
{{if eq $log.level "6"}}<span class="label label-info">INFO</span>{{end}}
{{if eq $log.level "7"}}<span class="label label-debug">DEBUG</span>{{end}}
</td>
<td class="center">{{$log.username}}</td>
<td><a name="info" data-link="/system/log/info?log_id={{$log.log_id}}">{{$log.message}}</a></td>
<td>{{$log.path}}</td>
<td class="center">{{$log.ip}}</td>
<td class="center">
{{dateFormat $log.create_time "Y-m-d H:i:s"}}
</td>
</tr>
{{end}}
</tbody>
</table>
</div>
<div class="panel-footer">
{{template "paginator/default.html" .}}
</div>
</div>
</div>
<script type="text/javascript">
$(function () {
Layers.bindIframe("[name='info']", "日志详细信息", "400px", "800px");
$("select[name='level']").val({{.level}})
});
</script>