board_s.html 803 B

1234567891011121314151617
  1. {% extends 'index/base.html' %}
  2. {% block title %}社区主页 - 河海大学论坛{% endblock %}
  3. {% block content %}
  4. {% import 'base/sort_js.html' as sort %}
  5. {{ sort.sort('board_s',board.id) }}
  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><a href="{{ url_for('board.board') }}">{{ board.board_f.chname_f }}</a></li>
  9. <li class="active">{{ board.chname_s }}</li>
  10. </ol>
  11. <a class="btn btn-primary" href="{{ url_for('board.question',class_url=class_url) }}" style="padding:2px 6px;">
  12. 发帖
  13. <span class="glyphicon glyphicon-edit" aria-hidden="true"></span>
  14. </a>
  15. {% import 'base/view.html' as view %}
  16. {{ view.view(board.questions) }}
  17. {% endblock %}