123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <{include file='../public/admin_header.html'}>
- <{include file='../public/admin_navi.html'}>
- <!-- Right side column. Contains the navbar and content of the page -->
- <aside class="right-side">
- <!-- Content Header (Page header) -->
- <section class="content-header">
- <h1>
- 短信发送列表
- <small>Control panel</small>
- </h1>
- <ol class="breadcrumb">
- <li><a href="#"><i class="fa fa-dashboard"></i> Home</a></li>
- <li class="active">Blank page</li>
- </ol>
- </section>
- <!-- Main content -->
- <section class="content">
- <div class="span9">
- <{if $info}>
- <div class="alert alert-success "><{$info}></div>
- <{/if}>
- <div class="alert alert-success ">未发送的短信数量:<{$wnums}></div>
- <{if $error}>
- <div class="alert alert-danger alert-dismissable"><{$error}></div>
- <{/if}>
- <div id='main' class="form-actions">
- <!--<a href="/?a=sms_template_admin&m=add" style="font-weight:bold;text-decoration:underline;">添加短信模板</a>-->
- <div style="height:20px;"></div>
- <table class="table table-striped" style="margin-top:15px;">
- <tr>
- <th>ID</th>
- <th>创建人</th>
- <th >发送标题</th>
- <th>客户分组</th>
- <th>发送数量</th>
- <th>添加时间</th>
- <th >定时发送时间</th>
- <th>发送状态</th>
- <th>发送方式</th>
- </tr>
- <{foreach from=$list item=item}>
- <tr>
- <td><{$item.log_id}></td>
- <td><{$uname}></td>
- <td><{$item.template_body}></td>
- <td><{$item.group_name}></td>
- <td><{$item.count}></td>
- <td><{$item.addtime}></td>
- <td><{$item.sendtime}></td>
- <td <{if $item.status==2}>style="color:red;"<{/if}>><{$status_array[$item.status]}></td>
- <td <{if $item.send_type==2}><{/if}>><{$send_array[$item.send_type]}></td>
- </tr>
- <{/foreach}>
- </table>
- <{$show}>
- </div>
- </div>
- </section><!-- /.content -->
- </aside><!-- /.right-side -->
- </div><!-- ./wrapper -->
- <style>
- select{height:30px;}
- </style>
- <script>
- $('#treeview11').addClass('active');
- $(".send_sms_admin").addClass('active');
- </script>
- </body>
- </html>
|