Files
web-discuz/uc_server/view/default/admin_user_log.htm
2025-06-27 21:04:18 +08:00

37 lines
778 B
HTML
Executable File

{template header}
<div class="container">
<h3 class="marginbot">
<a class="sgbtn" href="{UC_ADMINSCRIPT}?m=user&a=ls">{lang user_list}</a>
{lang menu_log}
</h3>
<div class="mainbox">
<!--{if $userlog}-->
<table class="datalist">
<tr>
<th>ID</th>
<th>UID</th>
<th>{lang log_operation}</th>
<th>{lang log_extra}</th>
</tr>
<!--{loop $userlog $log}-->
<tr>
<td>$log['lid']</td>
<td>$log['uid']</td>
<td>$log['action']</td>
<td>$log['extra']</td>
</tr>
<!--{/loop}-->
<tr class="nobg">
<td class="tdpage" colspan="5">$multipage</td>
</tr>
</table>
<!--{else}-->
<div class="note">
<p class="i">{lang list_empty}</p>
</div>
<!--{/if}-->
</div>
</div>
{template footer}