{# vim: set ts=2 et sts=2 sw=2: #} {% extends "forums/base.html" %} {# L10n: {t} is the title of the thread. {f} if the name of the forum. #} {% set title = _('Delete Post | {t} | {f} | Forums')|f(t=thread.title, f=forum.name) %} {% set crumbs = [(url('forums.forums'), _('Forums')), (url('forums.threads', forum.slug), forum.name), (url('forums.posts', forum.slug, thread.id), thread.title), (None, _('Delete Post'))] %} {% block content %}

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

{{ post.author }}
{{ datetimeformat(post.created, format='longdatetime') }}
{{ post.content_parsed }}
{{ csrf() }}

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

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