{% load i18n %} {% load gravatar %} {% load hk_generic %} {% with starting_email=thread.starting_email %}
{% if thread.favorite %} {% endif %} {% if thread|is_unread_by:request.user %} {% endif %} {{ starting_email.subject|strip_subject:mlist }} {{ thread.date_active|timesince }}
{% if starting_email.sender.address %} {% gravatar starting_email.sender.address 120 %}
{% endif %} {{ starting_email.sender.name|escapeemail }}
{% if use_mockups %}
{% include 'hyperkitty/threads/category.html' with category=thread.category category_form=thread.category_form threadid=thread.thread_id %}
{% endif %}
{% include "hyperkitty/fragments/like_form.html" with message_id_hash=starting_email.message_id_hash object=thread %}
  • {{ thread.participants_count }} {% trans "participants" %}
  • {{ thread|num_comments }} {% trans "comments" %}
{% if thread.tags.count %} {% trans "Tags:" %}
    {% for tag in thread.tags.distinct %}
  • {{tag.name}}{% if not forloop.last %},{% endif %}
  • {% endfor %}
{% endif %}
{% endwith %}