1234567891011121314151617181920212223 |
- <{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>
- </tr>
- <{foreach from=$applyData item=apply}>
- <tr>
- <td><{$apply.uid}></td>
- <td><{$apply.apply_txt}></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"}>
|