{% if m.author.avatar_pict %}
{% elif m.author.profile_pict %}
{% else %}
{% endif %}
{% endif %} {# close `user.can_view(m) or user_is_admin` #}
{% if user.can_view(m) %}
{{ m.author.get_short_name() }}
{{ m.date|localtime|date(DATETIME_FORMAT) }}
{{ m.date|localtime|time(DATETIME_FORMAT) }}
{% if user.can_edit(m) %}
{% endif %}
{% if user_is_admin and m._deleted %}
{% trans %}Undelete{% endtrans %}
{% endif %}
{% if not m._deleted and (user_is_admin or user.id == m.author_id) %}
{% endif %}
{{ m.message|markdown }}
{% if m.can_be_moderated_by(user) %}
{% if m.author.forum_signature %}
-
{% for meta in m.metas.select_related('user').order_by('id') %}
- {{ meta.get_action_display() }} {{ meta.user.get_short_name() }} {% trans %} at {% endtrans %}{{ meta.date|localtime|time(DATETIME_FORMAT) }} {% trans %} the {% endtrans %}{{ meta.date|localtime|date(DATETIME_FORMAT)}} {% endfor %}
{{ m.author.forum_signature|markdown }}
{% endif %}
{% else %}
{% trans %}Deleted or unreadable message.{% endtrans %}