{% trans %}Chat rooms{% endtrans %}
{% for event_chatroom in event_chatrooms %} {% set chatroom = event_chatroom.chatroom %} {% set server = chatroom.server %}
{{ chatroom.name }}
{% if chat_links %}
{% trans %}Join{% endtrans %}
{% endif %}
{% if chatroom.jid_node != chatroom.name.lower() %}
JID:
{{ chatroom.jid_node }}
{% endif %}
{% trans %}Server{% endtrans %}:
{{ chatroom.server }}
{% if chatroom.description %}
{% trans %}Description{% endtrans %}:
{{ chatroom.description }}
{% endif %} {% if chatroom.password %}
{% trans %}Password{% endtrans %}:
{% if event_chatroom.show_password %} {{ chatroom.password }} {% else %} {% trans %}Hidden{% endtrans %} {% endif %}
{% endif %}
{% endfor %} {% if how_to_connect %}
{% trans %}How to connect to the chat{% endtrans %}
{{ how_to_connect | sanitize_html }}
{% endif %}