event_log_list.html 647 B

12345678910111213141516171819202122232425262728
  1. <{include file="admin/header.html"}>
  2. <{include file="admin/nav.html"}>
  3. <div class="container">
  4. <table class="table table-condensed table-hover">
  5. <tr>
  6. <th>用户ID</th>
  7. <th>行为</th>
  8. <th>IP</th>
  9. <th>头信息</th>
  10. <th>触发时间</th>
  11. </tr>
  12. <{foreach from=$logData item=log}>
  13. <tr>
  14. <td><{$log.uid}></td>
  15. <td><{$lotteryLogType[$log.type].desc}></td>
  16. <td><{$log.ip}></td>
  17. <td><{$log.user_agent}></td>
  18. <td><{$log.create_time|date_format:'%Y-%m-%d %H:%M %S'}></td>
  19. </tr>
  20. <{/foreach}>
  21. <tr>
  22. <td colspan='7' class=' page'><{$page_html}></td>
  23. </tr>
  24. </table>
  25. </div>
  26. <{include file="admin/bottom.html"}>