contribution_list.html 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {// 引入标签库 }
  2. <tagLib name="html" />
  3. <include file="Public:header" />
  4. <load href='__TMPL__Common/js/jquery.bgiframe.js' />
  5. <load href='__TMPL__Common/js/jquery.weebox.js' />
  6. <load href='__TMPL__Common/js/deal.js' />
  7. <load href='__TMPL__Common/style/weebox.css' />
  8. <div class="main">
  9. <div class="main_title">{$user.nick_name} {%TICKET_CONTRIBUTION}</div>
  10. <div class="blank5"></div>
  11. <!--<div class="button_row">
  12. <input type="button" class="button" value="删除" onclick="del_contribution_list();" />
  13. </div>-->
  14. <div class="blank5"></div>
  15. <table id="" class="dataTable" cellpadding="0" cellspacing="0">
  16. <tbody>
  17. <tr>
  18. <td colspan="5" class="topTd">
  19. </td>
  20. </tr>
  21. <tr class="row">
  22. <th width="8">
  23. <input type="checkbox" id="check" onclick="CheckAll('dataTable')">
  24. </th>
  25. <th>贡献用户ID</th>
  26. <th>贡献用户昵称 </th>
  27. <th>用户头像</th>
  28. <th>贡献数量</th>
  29. </tr>
  30. <foreach name="list" item="list_item">
  31. <tr class="row">
  32. <td><input type="checkbox" name="key" class="key" value="{$list_item.user_id}"></td>
  33. <td>{$list_item.user_id}</td>
  34. <td>{$list_item.nick_name}</td>
  35. <td><img src="{$list_item.head_image}" style="height:35px;width:35px;"></td>
  36. <td>{$list_item.num}</td>
  37. </tr>
  38. </foreach>
  39. </tbody>
  40. </table>
  41. <div class="blank5"></div>
  42. <div class="page">{$page}</div>
  43. </div>
  44. <include file="Public:footer" />