{% extends "base.html" %} {% block styles %} {% if chat_room.show_background %} {% if chat_room.background_image %} .messages:after { background-image: url("{{MEDIA_URL}}/chatrooms/{{chat_room.background_image}}"); background-size: cover; } {% else %} .messages:after { background-image: url("{{STATIC_URL}}/img/chatbg.png"); } {% endif %} {% endif %} {% if SETTINGS.chatpage_layout == "boxed" %} @media screen and (min-width: 768px) { :root { --height-adustment: 110px; } } {% endif %} {% endblock %} {% block content %}
{% if hide_chat_list == false %}
{% if disable_private_chats == false %} {% endif %}
{% if chat_room.ad_chat_left_bar %} {% elseif SETTINGS.ad_chat_left_bar %} {% endif %}
{% endif %}
{{updated_list}}
{% if SETTINGS.chat_notice_message %} {% endif %} {% if chat_room.room_notice_message %} {% endif %} {% if view_as_user %} {% endif %}
{{ _('typing...') }}
{{_("You")}}
{% if SETTINGS.enable_audioclip %}
{% endif %} {% if SETTINGS.enable_codes %}
{% endif %} {% if SETTINGS.enable_files %}
{% endif %}
{% if SETTINGS.enable_gif %}
{% endif %} {% if SETTINGS.enable_stickers %}
{% endif %} {% if SETTINGS.enable_images %}
{% endif %}
{% if IS_AUTHENTICATED and joined_room and disable_group_chats %}

{{ _('You must select user before you can send messages') }}

{% endif %} {% if not IS_AUTHENTICATED %} {% endif %} {% if IS_AUTHENTICATED and not joined_room %}
{{ csrf_token()|raw }}

{{ _('You must') }} {{ _('join this room') }} {{ _('before you can send messages') }}

{% endif %}

{% if chat_room.ad_chat_right_bar %} {% elseif SETTINGS.ad_chat_right_bar %} {% endif %} {% if hide_chat_list == false %}
{% endif %}
{% if SETTINGS.radio %}
{{_("Radio Station List")}}
{% for radio in radios %}
{{radio.name}}
{% endfor %}
{{radios[0].name}}
{{radios[0].description}}
{% endif%}
{% if SETTINGS.enable_codes %} {% endif %}
{% endblock %} {% block scripts %}{% endblock %}