index.html 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <{include file='../public/admin_header.html'}>
  2. <{include file='../public/admin_navi.html'}>
  3. <!-- Right side column. Contains the navbar and content of the page -->
  4. <aside class="right-side">
  5. <!-- Content Header (Page header) -->
  6. <section class="content-header">
  7. <h1>
  8. 邮件模板列表
  9. <small>Control panel</small>
  10. </h1>
  11. <ol class="breadcrumb">
  12. <li><a href="#"><i class="fa fa-dashboard"></i> Home</a></li>
  13. <li class="active">Blank page</li>
  14. </ol>
  15. </section>
  16. <!-- Main content -->
  17. <section class="content">
  18. <div class="span9">
  19. <{if $info}>
  20. <div class="alert alert-success "><{$info}></div>
  21. <{/if}>
  22. <{if $error}>
  23. <div class="alert alert-danger alert-dismissable"><{$error}></div>
  24. <{/if}>
  25. <div id='main' class="form-actions">
  26. <a href="/?a=email_template_admin&m=add" style="font-weight:bold;text-decoration:underline;">添加邮件模板</a>
  27. <div style="height:20px;"></div>
  28. <table class="table table-striped" style="margin-top:15px;">
  29. <tr>
  30. <th>ID</th>
  31. <th >模板标题</th>
  32. <th >模板内容</th>
  33. <th>状态</th>
  34. <th>创建人</th>
  35. <th>修改时间</th>
  36. <th>添加时间</th>
  37. <th style="width:125px;">操作</th>
  38. </tr>
  39. <{foreach from=$list item=item}>
  40. <tr>
  41. <td><{$item.id}></td>
  42. <td><{$item.msg_title}></td>
  43. <td style="width:40%"><{$item.msg_content}></td>
  44. <td <{if $item.status==2}>style="color:red;"<{/if}>><{$status_array[$item.status]}></td>
  45. <td><{$uname}></td>
  46. <td><{$item.update_time|date_format:'%Y-%m-%d'}></td>
  47. <td><{$item.add_time|date_format:'%Y-%m-%d'}></td>
  48. <td>
  49. <a href="/?a=email_template_admin&m=update&id=<{$item.id}>">修改</a>
  50. <{if $item.status==1}>
  51. <a href="/?a=email_template_admin&m=delete&id=<{$item.id}>&status=2" style="margin-left:30px;" >禁用</a>
  52. <{/if}>
  53. <{if $item.status==2}>
  54. <a href="/?a=email_template_admin&m=delete&id=<{$item.id}>&status=1" style="margin-left:30px;" >启用</a>
  55. <{/if}>
  56. </td>
  57. </tr>
  58. <{/foreach}>
  59. </table>
  60. <{$show}>
  61. </div>
  62. </div>
  63. </section><!-- /.content -->
  64. </aside><!-- /.right-side -->
  65. </div><!-- ./wrapper -->
  66. <style>
  67. select{height:30px;}
  68. </style>
  69. <script>
  70. $('#treeview4').addClass('active');
  71. $(".email_template_left").addClass('active');
  72. </script>
  73. </body>
  74. </html>