index.html 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <include file="public@header" />
  2. </head>
  3. <body>
  4. <div class="wrap js-check-wrap">
  5. <ul class="nav nav-tabs">
  6. <li class="active"><a href="javascript:void(0)">回收站列表</a></li>
  7. </ul>
  8. <table class="table table-hover table-bordered margin-top-20">
  9. <thead>
  10. <tr>
  11. <th width="50">ID</th>
  12. <th>内容名称</th>
  13. <th>内容类型</th>
  14. <th>删除时间</th>
  15. <th>操作人</th>
  16. <th width="130">{:lang('ACTIONS')}</th>
  17. </tr>
  18. </thead>
  19. <tbody>
  20. <foreach name="list" item="vo">
  21. <tr>
  22. <td>{$vo.id}</td>
  23. <td>{$vo.name}</td>
  24. <td>
  25. {:lang('TABLE_'.strtoupper($vo['table_name']))}
  26. </td>
  27. <td> {:date('Y-m-d H:i:s',$vo['create_time'])}</td>
  28. <td> {:$vo.user.user_login}</td>
  29. <td>
  30. <a href="{:url('RecycleBin/restore',array('id'=>$vo['id']))}" class="btn btn-xs btn-success js-ajax-dialog-btn" data-msg="确定要还原吗?">还原</a>
  31. <a href="{:url('RecycleBin/delete',array('id'=>$vo['id']))}" class="btn btn-xs btn-danger js-ajax-delete">{:lang('DELETE')}</a>
  32. </td>
  33. </tr>
  34. </foreach>
  35. </tbody>
  36. </table>
  37. <div class="pagination">{$page}</div>
  38. </div>
  39. <script src="__STATIC__/js/admin.js"></script>
  40. </body>
  41. </html>