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

Message Boards

Sort: Category · Recent Activity
{% if boards %} {% for cat, blist in grouped %}
{{ cat }} {{ blist | length }}
{% for board in blist %} {% endfor %}
Board Description Topics Replies Last Activity
{{ 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 }} {{ board_stats[board.id].last_activity|eastern('%Y-%m-%d %H:%M', '—') }}
{% endfor %} {% else %}

No boards available.

{% endif %} {% endblock %}