{% extends "base.html" %} {% block title %}Message Board — {{ brand }}{% endblock %} {% block content %}

Message Board

Mirror of the Discord channel.

{% if user %} Signed in as {{ user.username }} Log out {% else %} Sign in with Discord {% endif %}
{% if not user %}Sign in to post.{% elif not can_post %}You don’t have permission to post.{% endif %}
{% if user %}

Your Status

Visible in Discord via webhook
0/140
{% endif %}
{% for m in messages %}
{% if m.avatar %} {% else %} {% endif %}
{{ m.username }}
{% if m.timestamp %}
{{ m.timestamp | replace('T',' ') | replace('Z',' UTC') }}
{% endif %}
{{ m.content }}
{% endfor %}
{% endblock %}