{# vim: set ts=2 et sts=2 sw=2: #} {% extends "kbforums/base.html" %} {# L10n: {t} is the title of the thread. {d} is the name of the document. #} {% set title = _('Delete Thread | {t} | {d} Discussion | Knowledge Base')|f(t=thread.title, d=document.title) %} {% set crumbs = [(url('wiki.category', document.category), document.get_category_display()), (document.get_absolute_url(), document.title), (url('wiki.discuss.threads', document.slug), _('Discuss')), (url('wiki.discuss.posts', document.slug, thread.id), thread.title), (None, _('Delete Thread'))] %} {% block content %}

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

{{ thread.title }}
{{ thread.creator }}
{{ datetimeformat(thread.created, format='longdatetime') }}
{{ thread.replies }}
{{ csrf() }}

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

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