{% extends "base.html" %} {% block title %}Message Boards - {{ config.BBS_NAME }}{% endblock %} {% block content %}

Message Boards

{% if boards %} {% for cat, blist in grouped %}
{{ cat }} {{ blist | length }}
{% for board in blist %} {% endfor %}
Board Description Topics Replies
{{ board.name }} {% if current_user.is_authenticated and board_stats[board.id].unread %} {{ board_stats[board.id].unread }} new {% endif %} {{ board.description }} {{ board_stats[board.id].post_count }} {{ board_stats[board.id].reply_count }}
{% endfor %} {% else %}

No boards available.

{% endif %} {% endblock %}