index.html 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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('theme/index')}">所有模板</a></li>
  7. <li><a href="{:url('theme/install')}">安装模板</a></li>
  8. </ul>
  9. <form method="post" class="js-ajax-form margin-top-20">
  10. <php> $status=array("1"=>lang('DISPLAY'),"0"=>lang('HIDDEN'));</php>
  11. <table class="table table-hover table-bordered table-list">
  12. <thead>
  13. <tr>
  14. <th>模板</th>
  15. <th>模板名称</th>
  16. <th>版本号</th>
  17. <th>语言</th>
  18. <th>作者</th>
  19. <th>模板描述</th>
  20. <th width="240">{:lang('ACTIONS')}</th>
  21. </tr>
  22. </thead>
  23. <tbody>
  24. <foreach name="themes" item="vo">
  25. <tr>
  26. <td>
  27. {$vo.theme}
  28. <eq name="vo.theme" value="$default_theme">
  29. <span class="label label-success">当前启用</span>
  30. </eq>
  31. </td>
  32. <td>{$vo.name}</td>
  33. <td><span class="label label-success">{$vo.version}</span></td>
  34. <td>{$vo.lang}</td>
  35. <td>{$vo.author}</td>
  36. <td>{$vo.description}</td>
  37. <td>
  38. <a class="btn btn-xs btn-primary" href="{:url('Theme/design',['theme'=>$vo.theme])}" target="_blank">设计</a>
  39. <a class="btn btn-xs btn-primary" href="javascript:parent.openIframeLayer('{:url('theme/files',array('theme'=>$vo['theme']))}','{$vo.name}文件列表',{});">文件列表</a>
  40. <a class="btn btn-xs btn-success js-ajax-dialog-btn" href="{:url('theme/update',array('theme'=>$vo['theme']))}"
  41. data-msg="确定更新此模板吗?">更新</a>
  42. <if condition="$vo.theme == $default_theme">
  43. <span class="btn btn-xs btn-warning disabled" color="#cccccc">启用</span>
  44. <else/>
  45. <a class="btn btn-xs btn-warning js-ajax-dialog-btn" href="{:url('theme/active',array('theme'=>$vo['theme']))}"
  46. data-msg="确定使用此模板吗?">启用</a>
  47. </if>
  48. <if condition="($vo.name == 'simpleboot3') OR ($vo.theme == $default_theme) ">
  49. <span class="btn btn-xs btn-danger disabled">卸载</span>
  50. <else/>
  51. <a class="btn btn-xs btn-danger js-ajax-dialog-btn" href="{:url('theme/uninstall',array('theme'=>$vo['theme']))}"
  52. data-msg="您设置的模板数据将被删除,<br>确定卸载此模板吗?">卸载</a>
  53. </if>
  54. </td>
  55. </tr>
  56. </foreach>
  57. </tbody>
  58. <tfoot>
  59. <tr>
  60. <th>模板</th>
  61. <th>模板名称</th>
  62. <th>版本号</th>
  63. <th>语言</th>
  64. <th>作者</th>
  65. <th>模板描述</th>
  66. <th width="180">{:lang('ACTIONS')}</th>
  67. </tr>
  68. </tfoot>
  69. </table>
  70. </form>
  71. </div>
  72. <script src="__STATIC__/js/admin.js"></script>
  73. </body>
  74. </html>