{% extends "app.html" %} {% block header_text %}

{{ name }}

{% endblock %} {% block main %} {% include "channel.html" %}
{% if not messages %}

Welcome to your new channel!

This is the start of something great. Use the commands below to get started:

  • Press /invite to invite someone.
  • Press /online to see who's currently online.
  • Press /help to view all available commands.

Enjoy chatting!

{% endif %} {% for message in messages|reverse %} {% autoescape false %} {{ message.html }} {% endautoescape %} {% endfor %}
{% include "dialog_container.html" %} {% include "dialog_help.html" %} {% include "dialog_online.html" %} {% include "dialog_create_channel.html" %} {% include "dialog_invite.html" %} {% include "dialog_leave_channel.html" %} {% include "dialog_channel_settings.html" %} {% endblock %}