{% extends 'base.html' %}{% block title %}Intercom — {{ brand }}{% endblock %} {% block content %}
{% if not can_post %}You don’t have permission to post.{% 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 %}