{% blocktrans with participant.user.get_absolute_url as sender_url %}
A message between You and
{% endblocktrans %}
{% for participant in participant.others %}
{{ participant.user }}
{% endfor %}
{% for message_tuple in message_list %}
{% with message_tuple.0 as message %}
{% include "django_messages/message_list_view.html" %}
{% endwith %}
{% endfor %}