{# vim: set ts=2 et sts=2 sw=2: #} {% extends "questions/base.html" %} {# L10n: {t} is the title of the question. #} {% set title = _('Delete Question | {t} | Firefox Support Forum')|f(t=question.title) %} {% set crumbs = [(url('questions.questions'), _('Forum')), (url('questions.answers', question.id), question.title), (None, _('Delete question'))] %} {% block content %}

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

{{ question.title }}
{{ question.creator }}
{{ datetimeformat(question.created, format='longdatetime') }}
{{ question.num_answers }}
{{ csrf() }}

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

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