log.html 901 B

1234567891011121314151617181920212223242526272829303132
  1. <include file="public@header"/>
  2. </head>
  3. <body>
  4. <div class="wrap js-check-wrap">
  5. <form class="js-ajax-form" action="" method="post">
  6. <table class="table table-hover table-bordered table-list">
  7. <thead>
  8. <tr>
  9. <th width="100">操作人</th>
  10. <th width="120">内容</th>
  11. <th width="120">操作时间</th>
  12. </tr>
  13. </thead>
  14. <foreach name="list" item="vo">
  15. <tr>
  16. <td>{$vo.name}</td>
  17. <td>{$vo.content}</td>
  18. <td>{$vo.create_time}</td>
  19. </tr>
  20. </foreach>
  21. </table>
  22. <ul class="pagination">{$page|default=''}</ul>
  23. </form>
  24. </div>
  25. <script src="__STATIC__/js/admin.js"></script>
  26. <script>
  27. function reloadPage(win) {
  28. win.location.reload();
  29. }
  30. </script>
  31. </body>
  32. </html>