12345678910111213141516171819202122232425 |
- <{include file="admin/header.html"}>
- <{include file="admin/nav.html"}>
- <div class="container">
- <table class="table table-condensed table-hover">
- <tr>
- <th>UID</th>
- <{foreach from=$formType item=formName}>
- <th><{$formName}></th>
- <{/foreach}>
- <th>查看用户信息</th>
- </tr>
- <{foreach from=$formData item=form}>
- <tr>
- <td><a href="<{$web_cfg.domain}>/?c=admin_members&uid=<{$form.uid}>" target="_blank" ><{$form.uid}></a></td>
- <{foreach from=$formType item=formName}>
- <td><{$form[$formName]}></td>
- <{/foreach}>
- <td><a href="<{$web_cfg.domain}>/?c=admin_members&uid=<{$form.uid}>" target="_blank" >查看用户信息</a></td>
- </tr>
- <{/foreach}>
- </table>
- <div class="page"><{$page_html}></div>
- </div>
- <{include file="admin/bottom.html"}>
|