{{ session_name }}
{% if session_users %}
{{ gettext('Users') }}
    {% for user in session_users %}
  • {{ user.user_name }}
  • {% endfor %}
{% endif %} {% if session_participants %}
{{ gettext('Participants') }}
    {% for part in session_participants %}
  • {{ part.participant_name }}
  • {% endfor %}
{% endif %} {% if session_devices %}
{{ gettext('Devices') }}
    {% for device in session_devices %}
  • {{ device.device_name }}
  • {% endfor %}
{% endif %}