group.html 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. {% extends 'index/base.html' %}
  2. {% block title %}社区主页 - 河海大学论坛{% endblock %}
  3. {% block content %}
  4. {% import 'base/panel.html' as panel %}
  5. {% import 'base/link.html' as link %}
  6. <ol class="breadcrumb" style="margin-bottom:0;">
  7. <li><a href="{{ url_for('forums.forums') }}"><span class="glyphicon glyphicon-home" aria-hidden="true"></span>社区首页</a></li>
  8. <li class="active">用户组</li>
  9. </ol>
  10. {% for group in groups %}
  11. <div class="panel panel-primary">
  12. <div class="panel-heading">
  13. {{ group.kind }}
  14. </div>
  15. <div class="panel-body row" style="border-bottom:1px solid #f6e1e1;">
  16. {% for t in group.kind | groups %}
  17. <div class="col-md-3">
  18. <a href="{{ url_for('group.group',group=t.name) }}">{{ t.name }}</a>
  19. <div style="font-size:12px;">
  20. <span style="color:#999;">主题:</span>
  21. <span>{{ t.count.topic }}</span>
  22. <span style="color:#999;">帖子:</span>
  23. <span>{{ t.count.all_topic }}</span>
  24. </div>
  25. <div style="font-size:12px;color:#999">创建者:{{ link.user(t.create_author) }}</div>
  26. </div>
  27. {% endfor %}
  28. </div>
  29. </div>
  30. {% endfor %}
  31. {% endblock %}