querylists.html 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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=sms_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>发送状态</th>
  38. <th>发送方式</th>
  39. </tr>
  40. <{foreach from=$list item=item}>
  41. <tr>
  42. <td><{$item.log_id}></td>
  43. <td><{$item.uname}></td>
  44. <td><{$item.template_body}></td>
  45. <td><{$item.group_name}></td>
  46. <td><{$item.count}></td>
  47. <td><{$item.addtime}></td>
  48. <td><{$item.sendtime}></td>
  49. <td <{if $item.status==2}>style="color:red;"<{/if}>><{$status_array[$item.status]}></td>
  50. <td <{if $item.send_type==2}><{/if}>><{$send_array[$item.send_type]}></td>
  51. </tr>
  52. <{/foreach}>
  53. </table>
  54. <{$show}>
  55. </div>
  56. </div>
  57. </section><!-- /.content -->
  58. </aside><!-- /.right-side -->
  59. </div><!-- ./wrapper -->
  60. <style>
  61. select{height:30px;}
  62. </style>
  63. <script>
  64. $('#treeview11').addClass('active');
  65. $(".send_sms_admin").addClass('active');
  66. </script>
  67. </body>
  68. </html>