{% extends request.is_ajax|yesno:'bajax.html,base.html' %} {% load i18n bootstrap3 %} {% block breadcrumb %} {% endblock %} {% block page-header %} {{ conv.title }} {% endblock %} {% block main %}

{{ conv.title }} {{ conv.participants.count }} {% trans 'peoples' %}

{% with can_view_profile=perms.accounts_app.view_userprofile %} {% for msg in msg_list %} {% with author=msg.author %}
{% if msg.author == request.user %} {% endif %}
{% if can_view_profile %} ava {% else %} ava {% endif %}
{{ author.get_short_name }} {{ msg.sent_at|date:'d M, H:i:s' }}
{{ msg.text }}
{% if msg.attachment %} {{ msg.attachment }} {% endif %}
{% endwith %} {% empty %}

{% trans 'Message history is empty' %}

{% endfor %} {% endwith %}
{% csrf_token %}
{% endblock %}