This repository has been archived on 2026-07-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
GoEdgeAdmin/web/views/@default/log/index.html
T

14 lines
352 B
HTML

{$layout}
<p class="comment" v-if="logs.length == 0">暂时还没有日志。</p>
<table class="ui table selectable" v-for="log in logs">
<tr>
<td>{{log.createdTime}} <span v-if="log.userName.length > 0">@ {{log.userName}}</span> @ {{log.ip}}</td>
</tr>
<tr>
<td>{{log.description}}</td>
</tr>
</table>
<div class="page" v-html="page"></div>