| 1234567891011121314151617181920212223242526272829 | 
							- <{include file="admin/header.html"}>
 
- <{include file="admin/nav.html"}>
 
- <div class="container">
 
- 	<table class="table table-condensed table-hover">
 
- 		<tr>
 
- 			<th>用户ID</th>
 
- 			<th>姓名</th>
 
- 			<th>城市</th>
 
- 			<th>电话</th>
 
- 			<th>Email</th>
 
- 			<th>申请时间</th>
 
- 		</tr>
 
- 		<{foreach from=$applyData item=apply}>
 
- 			<tr>
 
- 			<td><{$apply.uid}></td>
 
- 			<td><{$apply.user_name}></td>
 
- 			<td><{$apply.city}></td>
 
- 			<td><{$apply.phone}></td>
 
- 			<td><{$apply.mail}></td>
 
- 			<td><{$apply.create_time|date_format:'%Y-%m-%d %H:%M %S'}></td>
 
- 		</tr>
 
- 		<{/foreach}>
 
- 		<tr>
 
- 		<td colspan='7' class=' page'><{$page_html}></td>
 
- 		</tr>
 
- 	</table>
 
- </div>
 
- <{include file="admin/bottom.html"}>
 
 
  |