pw.view.html 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {% extends "layout.html" %}
  2. {% block title %}
  3. 邵武一中新闻部摄影大赛-投票系统
  4. {% endblock %}
  5. {% block content %}
  6. <div class="panel panel-primary">
  7. <div class="panel-heading">
  8. <h3 class="panel-title">{{pwobj.title}}</h3>
  9. </div>
  10. <div class="panel-body">
  11. <img class="img-responsive" src="{{pwurl}}{{pwobj.filename}}.{{pwobj.fileext}}" />
  12. </div>
  13. </div>
  14. <div class="panel panel-primary">
  15. <div class="panel-heading">
  16. <h3 class="panel-title">作品信息</h3>
  17. </div>
  18. <table class="table table-striped">
  19. <tbody>
  20. <tr>
  21. <th>标题</th>
  22. <td>{{pwobj.title}}</td>
  23. </tr>
  24. <tr>
  25. <th>目前票数</th>
  26. <td>{{pwobj.score}}</td>
  27. </tr>
  28. <tr>
  29. <th>作品描述</th>
  30. <td>{{pwobj.desc}}</td>
  31. </tr>
  32. <tr>
  33. <th>操作</th>
  34. <td>
  35. <a href="{%url 'pwflist' %}" role="button" class="btn btn-xs btn-primary">返回作品列表</a>
  36. <a href="{%url 'votephoto' pwobj.uuid %}" role="button" class="btn btn-xs btn-primary">投票给本作品</a>
  37. {% if hasnext %}
  38. <a href="{%url 'pwview' nextuuid %}" role="button" class="btn btn-xs btn-primary">下一张作品</a>
  39. {% else %}
  40. <button class="btn btn-grey btn-xs">已是最后一张</button>
  41. {% endif %}
  42. </td>
  43. </tr>
  44. </tbody>
  45. </table>
  46. </div>
  47. {% endblock %}