{% extends "base.html" %} {% block title %}Message Boards - {{ config.BBS_NAME }}{% endblock %} {% block content %}
| 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', '—') }} |
No boards available.
{% endif %} {% endblock %}