{% extends "base.html" %} {% load i18n %} {% load static %} {% load crispy_forms_filters %} {% block title %} {% if form.set_archived %} {% translate "archive" as action %} {% else %} {% translate "unarchive" as action %} {% endif %} {% blocktranslate trimmed with action=action|capfirst %} {{ action }} question {% endblocktranslate %} {% endblock %} {% block content %} {% if form.set_archived %} {% translate "archive" as action %} {% else %} {% translate "unarchive" as action %} {% endif %}
{% csrf_token %} {{ form|crispy }}

{% blocktranslate trimmed with action=action %} Are you sure you want to {{ action }} the question {{ question }}? {% endblocktranslate %}

{% translate "Back" %}
{% endblock %}