{% extends request.is_ajax|yesno:'bajax.html,base.html' %} {% load i18n %} {% block breadcrumb %} {% endblock %} {% block page_header %}

{% trans 'Conversations' %}

{% endblock %} {% block main %}

{% trans 'Conversations' %}

{% trans 'Enter to conversation by clicking to it' %}
{% for conv in conversations %} {% with last_msg=conv.last_message %}
{% if last_msg %}
{{ last_msg.sent_at|date:'d M, H:i:s' }}
{% endif %}

{{ conv.title }} {% blocktrans with participants_count=conv.participants.count msg_count=conv.msg_count %}{{ participants_count }} participants, {{ msg_count }} messages{% endblocktrans %}

{% if last_msg %}

{{ last_msg.text }}

{% else %}

{% trans 'No messages found' %}

{% endif %}
{% endwith %} {% empty %}

{% trans 'Any conversations not found' %}

{% endfor %}
{% endblock %}