{% extends "base.html" %} {% block title %}Bulletins{% endblock %} {% block content %}

Bulletins

System announcements and news from the sysop.

{% if bulletins %} {% for b in bulletins %} {% endfor %}
TitlePostedStatus
{% if b.is_pinned %} {% endif %} {{ b.title }} {{ b.created_at.strftime('%Y-%m-%d %H:%M') }} {% if b.expires_at %} expires {{ b.expires_at.strftime('%Y-%m-%d') }} {% endif %}
{% else %}
No active bulletins.
{% endif %}
{% endblock %}