{% extends 'base.html' %} {% load static i18n pagination chat_tags %} {% load django_bootstrap_breadcrumbs %} {% block breadcrumbs %} {{ block.super }} {% trans 'Messages' as general %} {% trans 'Participants' as participants_bread %} {% breadcrumb general 'chat:manage_general' %} {% breadcrumb participants_bread 'chat:participants_general' %} {% endblock %} {% block content %}
{% if participants.count > 0 %}

{% trans 'Participants' %}

{% for participant in participants %} {% include 'chat/_view_participant.html' with space="0" space_type='general' %} {% endfor %}
{% pagination request paginator page_obj %}
{% else %}

{% trans 'There is no other participants in this space yet.' %}

{% endif %}
{% endblock %}