post.list.html 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {% extends "base-with-sidebar.html" %}
  2. {% load authperm %}
  3. {% load crypto %}
  4. {% load staticres %}
  5. {% load htmlutils %}
  6. {% block title %}
  7. {% ifequal ctname "*" %}
  8. 全部文章 - 丘丘塔台
  9. {% else %}
  10. 分类浏览:{{ctname}} - 丘丘塔台
  11. {% endifequal %}
  12. {% endblock %}
  13. {% block sidebar %}
  14. {% include "home/front.sidebar.html" %}
  15. {% endblock %}
  16. {% block content %}
  17. <div class="btn-toolbar">
  18. <div class="btn-group">
  19. {% ifperm "pichublog" "Writer" %}
  20. {% url "pichublog_catadd" as pichublog_catadd %}
  21. <a class="btn btn-primary {%if request.path = pichublog_postadd %} active {% endif %}" href="{{ pichublog_catadd }}">
  22. <span class="glyphicon glyphicon-plus"></span>
  23. 新建文章
  24. </a>
  25. {% endifperm %}
  26. <button type="button" class="btn btn-primary" data-toggle="button" aria-pressed="false" autocomplete="off" onclick="$('#FilterCollapse').collapse('toggle');">
  27. <span class="glyphicon glyphicon-filter"></span>
  28. 显示筛选器
  29. </button>
  30. </div>
  31. </div>
  32. <br />
  33. <div class="collapse" id="FilterCollapse">
  34. {{FilterHTML|safe}}
  35. </div>
  36. <div>{% include "common/paginator.html" %}</div>
  37. <br />
  38. <ul class="list-group">
  39. {% for i in lPage %}
  40. <li class="list-group-item">
  41. <h3>
  42. {% if i.private %}
  43. {% if i.passwdlck %}
  44. <span class="label label-warning" style="display:inline-block">密码保护</span>
  45. {% else %}
  46. <span class="label label-warning" style="display:inline-block">访问限制</span>
  47. {% endif %}
  48. {% endif %}
  49. <a href="{% url 'pichublog_postview' i.id %}">{{i.title}}</a>
  50. </h3>
  51. <p>
  52. <b>作者:</b>{{i.author.nick}}&nbsp;&nbsp;&nbsp;
  53. <b>发布时间:</b>{{i.pubtime|date:"Y-m-d H:i:s"}}&nbsp;&nbsp;&nbsp;<br />
  54. <strong>分类:</strong>
  55. {% for j in i.category.all %}
  56. <a href="{% url 'pichublog_postlist' j.engname %}"><span class="label label-info" style="display:inline-block">{{j.title}}</span></a>
  57. {% endfor %}
  58. </p>
  59. <blockquote>{% mksummary i.html "233" %}</blockquote>
  60. </li>
  61. {% endfor %}
  62. </ul>
  63. <br />
  64. <div>{% include "common/paginator.html" %}</div>
  65. {% endblock %}