{% for ticket in tickets %}

{{ ticket.linked_item|item_title }} · {{ ticket.title }}

{% with author_id = ticket.user_id %} {% if author_id %}
{{ link_user(author_id) }}
{% endif %} {% endwith %} {% set last_message = ticket.messages.last() %}
{{link_user(last_message.user_id)}} {{_('replied')}}
{{ last_message.body|markdown(lazy_load=True)|reference|str|safe }}
{{_("...More")}}
{% endfor %} {% include "feed/has_next.html" %}