admin_index.html 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <include file="public/head"/>
  5. <title>ThinkCMF插件演示首页</title>
  6. <meta name="description" content="ThinkCMF插件演示首页">
  7. <meta name="keywords" content="ThinkCMF插件演示首页">
  8. </head>
  9. <body>
  10. <div class="wrap js-check-wrap">
  11. <ul class="nav nav-tabs">
  12. <li class="active"><a>插件演示后台</a></li>
  13. </ul>
  14. <div class="common-form">
  15. <div class="well">
  16. <p>
  17. <b>当前登录管理员id:</b>{$admin_id|default='管理员未登录'}
  18. </p>
  19. <p>
  20. <b>插件根目录:</b>__PLUGIN_ROOT__
  21. </p>
  22. <p>
  23. <b>插件模板根目录:</b>__PLUGIN_TMPL__
  24. </p>
  25. </div>
  26. <form method="post" class="js-ajax-form" action="#">
  27. <div class="table_list">
  28. <table width="100%" class="table table-hover">
  29. <thead>
  30. <tr>
  31. <th width="50">ID</th>
  32. <th>用户名</th>
  33. <th>邮箱</th>
  34. <th>注册时间</th>
  35. <th width="120">操作</th>
  36. </tr>
  37. </thead>
  38. <tbody>
  39. <foreach name="users" item="vo">
  40. <tr>
  41. <td>{$vo.id}</td>
  42. <td>{$vo.user_login}</td>
  43. <td>{$vo.user_email}</td>
  44. <td>{$vo.create_time}</td>
  45. <td>
  46. <a href="javascript:;">修改</a>|
  47. <a href="javascript:;" class="js-ajax-delete">删除</a>
  48. </td>
  49. </tr>
  50. </foreach>
  51. </tbody>
  52. </table>
  53. </div>
  54. </form>
  55. </div>
  56. </div>
  57. <include file="public/scripts"/>
  58. </body>
  59. </html>