{% load i18n misago_avatars misago_capture %}
{% if post.hidden_by_name %}
{% capture trimmed as hidden_by %}
{% if post.hidden_by_id %}
{{ post.hidden_by_name }}
{% else %}
{{ post.hidden_by_name }}
{% endif %}
{% endcapture %}
{% capture trimmed as hidden_on %}
{{ post.hidden_on|date }}
{% endcapture %}
{% if post.id == thread.first_post_id %}
{% blocktrans trimmed with user=hidden_by|safe date=hidden_on|safe %}
This thread was hidden by {{ user }} {{ date }}.
{% endblocktrans %}
{% else %}
{% blocktrans trimmed with user=hidden_by|safe date=hidden_on|safe %}
This post was hidden by {{ user }} {{ date }}.
{% endblocktrans %}
{% endif %}
{% else %}
{% if post.id == thread.first_post_id %}
{% trans "This thread is hidden. Only it's author and moderators can see it." %}
{% else %}
{% trans "This post is hidden. Only it's author and moderators can see it." %}
{% endif %}
{% endif %}