{% extends 'events/display/conference/base.html' %} {% block title %} {% trans %}Chat Rooms{% endtrans %} {% endblock %} {% block content %} {% 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 %} {% endblock %}