events_letters.html 552 B

1234567891011121314151617181920212223
  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>用户ID</th>
  7. <th>申请信息</th>
  8. <th>申请时间</th>
  9. </tr>
  10. <{foreach from=$applyData item=apply}>
  11. <tr>
  12. <td><{$apply.uid}></td>
  13. <td><{$apply.apply_txt}></td>
  14. <td><{$apply.create_time|date_format:'%Y-%m-%d %H:%M %S'}></td>
  15. </tr>
  16. <{/foreach}>
  17. <tr>
  18. <td colspan='7' class=' page'><{$page_html}></td>
  19. </tr>
  20. </table>
  21. </div>
  22. <{include file="admin/bottom.html"}>