{{ thread.title }}
{{ _("by %(creator)s", creator=m_user_link(thread.creator)) }}
|
{{ thread.created_at | age(date_threshold='day') }}
{%- if thread.closed %} {%- endif %}
{% extends "forum/_base.html" %} {%- from "macros/user.html" import m_user_link, m_user_photo %} {% from "macros/box.html" import m_box_menu, m_box_content %} {% block content %} {% call m_box_content(_("Recent conversations")) %} {% if threads %}
{{ _("No message has been posted to this community yet.") }}
{% endif %} {% if has_more or True %}
{% set last_post_creator = thread.posts[-1].creator %} {{ _("Last comment by %(creator)s", creator=m_user_link(last_post_creator)) }} | {{ thread.posts[-1].created_at.strftime('%Y-%m-%d') }} {%- endif %}