init: 从宝塔同步到 Gitea

This commit is contained in:
root
2026-02-25 01:50:31 +08:00
commit e633c8e27d
2444 changed files with 399341 additions and 0 deletions
@@ -0,0 +1,30 @@
{include file="public/header"}
<body>
<div class="x-body">
<div class="layui-btn no-print" onclick="jQuery('html').print()">打印</div>
<table class="layui-table">
<div style="text-align: center;font-size: 18px;font-weight:bold;">操作日志列表</div>
<thead>
<tr>
<th style="text-align: center;">编号</th>
<th style="text-align: center;">操作人</th>
<th style="text-align: center;">操作类型</th>
<th style="text-align: center;">操作描述</th>
<th style="text-align: center;">操作时间</th>
</tr>
</thead>
<tbody>
{foreach name="log_list" item="vo"}
<tr>
<td>{$vo.id}</td>
<td>{$vo.username}</td>
<td>{$vo.control}</td>
<td>{$vo.remake}</td>
<td>{$vo.control_time}</td>
</tr>
{/foreach}
</tbody>
</div>
</body>
</html>