| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 | 
							- <{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}>
 
- 			<{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><{$item.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>
 
 
  |