{% extends "base.html" %} {% block title %}Moderate BBS — atbbs{% endblock %} {% block content %}

Moderate BBS

Manage banned users and hidden posts.

{% for did in bbs.site.banned_dids %}
{{ banned_handles.get(did, did) }} {% if did in ban_rkeys %}
{% endif %}
{% endfor %}
{% for post in hidden_posts %}
{{ post.handle }} — {{ post.title or post.body }} {% if post.uri in hide_rkeys %}
{% endif %}
{% endfor %}
{% endblock %}