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

Message of the Day Pool

Each login picks one MOTD at random (weighted). Active rows only.

{% if motds %} {% for m in motds %} {% endfor %}
OnWtTextAdded
{% if m.is_active %}on{% else %}off{% endif %} {{ m.weight }} {{ m.text }} {{ m.created_at.strftime('%Y-%m-%d') }}
{% else %}
No MOTDs yet — add one above.
{% endif %}
{% endblock %}