{% extends "forums/base.html" %}
{# L10n: {t} is the title of the thread. {f} if the name of the forum. #}
{% set title = _('Delete Thread | {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 Thread'))] %}
{% set ga_content_group = "contributor-forum-thread-delete" %}
{% block content %}
{{ _('Are you sure you want to delete this thread?') }}