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

Tagline Pool

Shared random-tagline pool — anyone composing a message (local boards, private messages, netmail, echomail, terminal or web) can opt in to append one random active entry. Distinct from a user's own fixed profile tagline (Profile > Edit), which is unrelated and always appended automatically for netmail/echomail.

{% if taglines %} {% for t in taglines %} {% endfor %}
OnTextAdded
{% if t.is_active %}on{% else %}off{% endif %} {{ t.text }} {{ t.created_at|eastern('%Y-%m-%d') }}
{% else %}
No taglines yet — add one above.
{% endif %}
{% endblock %}