{% extends "kbforums/base.html" %} {% from "kbforums/includes/macros.html" import kbforums_warning with context %} {# L10n: {t} is the title of the thread. {d} is the name of the document. #} {% set title = _('Delete Post | {t} | {d} Discussion | Knowledge Base')|f(t=thread.title, d=document.title) %} {% set crumbs = [(document.get_absolute_url(), document.title), ((url('wiki.discuss.threads', document.slug), 'rel="ugc nofollow"'), _('Discuss')), ((url('wiki.discuss.posts', document.slug, thread.id), 'rel="ugc nofollow"'), thread.title), (None, _('Delete Post'))] %} {% block content %}
{{ kbforums_warning(document, user) }}

{{ _('Are you sure you want to delete this post?') }}

{{ display_name(post.creator) }}
{{ datetimeformat(post.created, format='longdatetime') }}
{{ post.content_parsed }}
{% csrf_token %}

{{ _('You are about to permanently delete this post. This cannot be undone! Are you sure you want to continue?')|safe }}

{{ _('Cancel') }}
{% endblock %}