event_form_data.html 779 B

12345678910111213141516171819202122232425
  1. <{include file="admin/header.html"}>
  2. <{include file="admin/nav.html"}>
  3. <div class="container">
  4. <table class="table table-condensed table-hover">
  5. <tr>
  6. <th>UID</th>
  7. <{foreach from=$formType item=formName}>
  8. <th><{$formName}></th>
  9. <{/foreach}>
  10. <th>查看用户信息</th>
  11. </tr>
  12. <{foreach from=$formData item=form}>
  13. <tr>
  14. <td><a href="<{$web_cfg.domain}>/?c=admin_members&uid=<{$form.uid}>" target="_blank" ><{$form.uid}></a></td>
  15. <{foreach from=$formType item=formName}>
  16. <td><{$form[$formName]}></td>
  17. <{/foreach}>
  18. <td><a href="<{$web_cfg.domain}>/?c=admin_members&uid=<{$form.uid}>" target="_blank" >查看用户信息</a></td>
  19. </tr>
  20. <{/foreach}>
  21. </table>
  22. <div class="page"><{$page_html}></div>
  23. </div>
  24. <{include file="admin/bottom.html"}>