check_box
{% if user.is_authenticated and user.id == thread.best_answer_marked_by_id %}
{% blocktrans trimmed with marked_by=thread.best_answer_marked_by_username marked_on=thread.best_answer_marked_on|date:'DATETIME_FORMAT' %}
Marked as best answer by you {{ marked_on }}.
{% endblocktrans %}
{% else %}
{% blocktrans trimmed with marked_by=thread.best_answer_marked_by_username marked_on=thread.best_answer_marked_on|date:'DATETIME_FORMAT' %}
Marked as best answer by {{ marked_by }} {{ marked_on }}.
{% endblocktrans %}
{% endif %}
{% endif %}
{% if post.is_hidden %}
visibility_off
{% trans "This post is hidden. Only users with permission may see its contents." %}
{% endif %}
{% if post.is_unapproved %}
remove_circle_outline
{% trans "This post is unapproved. Only users with permission to approve posts and its author may see its contents." %}
{% endif %}
{% if post.is_protected %}
lock_outline
{% trans "This post is protected. Only moderators may change it." %}
{% endif %}