index.html 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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="{:url('AdminAsset/index')}">资源列表</a></li>
  7. </ul>
  8. <php>$status=['不可用', '可用'];</php>
  9. <table class="table table-hover table-bordered margin-top-20">
  10. <thead>
  11. <tr>
  12. <th width="50">ID</th>
  13. <th>用户</th>
  14. <th>文件大小</th>
  15. <th>文件名</th>
  16. <th>图像</th>
  17. <th>文件路径</th>
  18. <th>状态</th>
  19. <th width="160">{:lang('ACTIONS')}</th>
  20. </tr>
  21. </thead>
  22. <tbody>
  23. <php>
  24. $asset_img_suffixes=['bmp','jpg','jpeg','png','gif','tiff'];/*TODO ADD MORE*/
  25. </php>
  26. <foreach name="assets" item="vo">
  27. <tr>
  28. <td>{$vo.id}</td>
  29. <td>
  30. 用户ID:{$vo.user_id} {$vo.user_login} {$vo.user_nicename}
  31. </td>
  32. <td>{$vo.file_size/1024|round}KB</td>
  33. <td>{$vo.filename}</td>
  34. <td>
  35. <if condition="in_array(strtolower($vo['suffix']),$asset_img_suffixes)">
  36. <a href="javascript:parent.imagePreviewDialog('{:cmf_get_image_preview_url($vo['file_path'])}');">
  37. <i class="fa fa-photo fa-fw"></i>
  38. </a>
  39. </if>
  40. </td>
  41. <td>
  42. {$vo.file_path}
  43. <if condition="!file_exists('upload/'.$vo['file_path'])">
  44. <span style='color:red;'>&nbsp;&nbsp(文件丢失)</span>
  45. </if>
  46. </td>
  47. <td>{$status[$vo['status']]}</td>
  48. <td>
  49. <a class="btn btn-xs btn-danger js-ajax-delete"
  50. href="{:url('AdminAsset/delete',array('id'=>$vo['id']))}">{:lang('DELETE')}</a>
  51. </td>
  52. </tr>
  53. </foreach>
  54. </tbody>
  55. </table>
  56. <div class="pagination">{$page|default=''}</div>
  57. </div>
  58. <script src="__STATIC__/js/admin.js"></script>
  59. </body>
  60. </html>