{{ post.creator }} {{ private_message(post.creator) }} {% with count = post.creator.post_set.count() %} {# L10n: {0} is the number of posts. #} {{ ngettext('1 post', '{0} posts', count)|f(count) }} {% endwith %}
{% if post.id and (perms.kbforums.change_post or (post.creator == request.user and not thread.is_locked)) %} {{ _('Edit') }} {% endif %} {% if post.id and perms.kbforums.delete_post %} {{ _('Delete') }} {% endif %} {% if document and document.slug and post.id %}
{% include 'wiki/includes/flag_form.html' %}
{% endif %}
{{ post.content_parsed }}
{{ post.content }}
{{ datetimeformat(post.created, format='longdatetime') }} {% if post.id and user.is_authenticated() and not thread.is_locked %} {{ _('Reply') }} {% endif %} {% if post.id and post.created != post.updated %} {{ _('Modified by {name} on {datetime}')|fe(name=post.updated_by.username, datetime=datetimeformat(post.updated, format='longdatetime')) }} {% endif %}