12345678910111213141516171819202122232425262728 |
- <{include file="admin/header.html"}>
- <{include file="admin/nav.html"}>
- <div class="container">
- <table class="table table-condensed table-hover">
- <tr>
- <th>用户ID</th>
- <th>行为</th>
- <th>IP</th>
- <th>头信息</th>
- <th>触发时间</th>
- </tr>
- <{foreach from=$logData item=log}>
- <tr>
- <td><{$log.uid}></td>
- <td><{$lotteryLogType[$log.type].desc}></td>
- <td><{$log.ip}></td>
- <td><{$log.user_agent}></td>
- <td><{$log.create_time|date_format:'%Y-%m-%d %H:%M %S'}></td>
- </tr>
- <{/foreach}>
- <tr>
- <td colspan='7' class=' page'><{$page_html}></td>
- </tr>
- </table>
- </div>
- <{include file="admin/bottom.html"}>
|