{% extends "django_messages/base.html" %} {% load i18n %} {% load truncchar_tag %} {% load avatar_tags %} {% load pagination_tags %} {% block body %}

{% trans "Searching for" %}: {{ search_term }}

{% csrf_token %}

{% trans "Sender" %}

{% trans "Subject" %}

{% for thread in thread_results %} {% with thread.object as thread %}
{{ thread.latest_msg.sender }} {{ thread.latest_msg.sent_at|date:_("DATETIME_FORMAT") }}
{{ thread.subject|truncchar:45 }} {{thread.latest_msg.body|truncatewords:8}}
{% endwith %} {% empty %}
{% trans "No messages" %}
{% endfor %}
{% endblock %}