user.html 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <{include file="./admin/header.html"}> <{include
  2. file="./admin/left.html"}> <{include file="./admin/nav.html"}> <{include
  3. file="get_kindeditor.html"}>
  4. <style>
  5. .set-nav {
  6. margin: 0 auto;
  7. }
  8. .set-nav-hr {
  9. background-color: #ddd;
  10. height: 1px;
  11. position: relative;
  12. }
  13. .form-group label {
  14. font-weight: 600;
  15. }
  16. .checkbox-inline, .radio-inline {
  17. font-weight: 400 !important;
  18. }
  19. .rowlabel {
  20. font-weight: 300 !important;
  21. }
  22. .music_play_hide {
  23. display: none;
  24. }
  25. </style>
  26. <div id="activity_container">
  27. <div class="activity_center" style="width: 100%">
  28. <{include file="./admin/activity/common_nav.html"}> <input
  29. name="events_id" type="hidden" value="<{$events_Data.events.id}>">
  30. <div class="panel panel-default" >
  31. <div class="panel-heading" >
  32. <h3 class="panel-title" id="panel-title">用户列表</h3>
  33. </div>
  34. <div class="panel-body" >
  35. <div class="form-group">
  36. <div>
  37. <table class="table table-hover">
  38. <thead>
  39. <tr>
  40. <th>用户头像</th>
  41. <th>用户名</th>
  42. <th>Uid</th>
  43. <th>创建时间</th>
  44. </tr>
  45. </thead>
  46. <tbody>
  47. <{foreach from=$thisPageUserData item=userData}>
  48. <tr>
  49. <td>
  50. <{if $userData.headimgurl}>
  51. <img class="img-rounded" width="48" height="48" src="<{$userData.headimgurl}>" />
  52. <{else}>
  53. <img class="img-rounded" width="48" height="48" src="http://news.mydrivers.com/Img/20110518/04481549.png" />
  54. <{/if}>
  55. </td>
  56. <td><{if $userData.nickname}><{$userData.nickname}><{else}>游客<{$userData.id}><{/if}></td>
  57. <td passport_uid="<{$userData.passport_uid}>"><{$userData.id}></td>
  58. <td><{"Y-m-d H:i:s"|date:$userData.create_time}></td>
  59. </tr>
  60. <{/foreach}>
  61. </tbody>
  62. </table>
  63. <div class="page">
  64. <{$page_html}>
  65. </div>
  66. </div>
  67. </div>
  68. </div>
  69. </div>
  70. </div>
  71. <div style="clear: both;"></div>
  72. </div>
  73. <script>
  74. KISSY.use('node, io, event', function(S, Node, IO, Event) {
  75. var $ = S.all;
  76. });
  77. </script>
  78. <{include file="./admin/bottom.html"}>