{% extends "questions/base.html" %} {# L10n: {t} is the title of the question. #} {% set title = _('Delete Answer | {t} | Firefox Support Forum')|f(t=answer.question.title) %} {% set crumbs = [(url('questions.home'), _('Support Forums')), (url('questions.details', answer.question.id), answer.question.title), (None, _('Delete answer'))] %} {% set ga_content_group = "support-forum-answer-delete" %} {% if answer.question.product %} {% set ga_products = "/" + answer.question.product.slug + "/" %} {% endif %} {% if answer.question.topic %} {% set ga_topics = "/" + answer.question.topic.slug + "/" %} {% endif %} {% block content %}

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

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

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

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