pw.toplist.html 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {% extends "base.html" %}
  2. {% block title %}
  3. 得票排行榜
  4. {% endblock %}
  5. {% block content %}
  6. <div class="section section-breadcrumbs section-breadcrumbs-backend">
  7. <div class="container">
  8. <div class="row">
  9. <div class="col-md-12">
  10. <h1>得票排行榜</h1>
  11. </div>
  12. </div>
  13. </div>
  14. </div>
  15. <hr/>
  16. <div>{% include "common/paginator.html" %}</div>
  17. <br />
  18. <div>
  19. <table class="table table-hover table-striped table-bordered table-condensed">
  20. <tr>
  21. <th>作品ID</th>
  22. <th>标题</th>
  23. <th>参赛者账号</th>
  24. <th>参赛者姓名</th>
  25. <th>导入批号</th>
  26. <th>得票数</th>
  27. <th>操作</th>
  28. </tr>
  29. {% for i in lPage %}
  30. <tr style="font-size: 13px;">
  31. <td>{{ i.uuid }}</td>
  32. <td>{{ i.title }}</td>
  33. <td>{{ i.author.user.username }}</td>
  34. <td>{{ i.author.user.nickname }}</td>
  35. <td>{{ i.importid }}</td>
  36. <td>{{ i.score }}</td>
  37. <td class="host_buttom">
  38. <a class="btn btn-warning btn-xs" href={% url "pwview" i.uuid %} target="_blank">查看</a>
  39. </td>
  40. </tr>
  41. {% endfor %}
  42. </table>
  43. </div>
  44. <div>{% include "common/paginator.html" %}</div>
  45. {% endblock %}