{% extends 'staff.html' %} {% load bootstrap3 i18n %} {% block correspondentstab %} class="active"{% endblock %} {% block content %}

{% trans "Correspondents" %}

{% trans "This is the list of participants that you follow." %}

{% for correspondent in correspondent_list %} {% endfor %}
# Username Full name Administration
{{ forloop.counter }} {{ correspondent.user.username }} {{ correspondent.user.get_full_name }} {% if request.user in correspondent.conversation.subscribers.all %} {% else %} {% endif %}
{% endblock %}