{% extends "questions/includes/question_editing_frame.html" %} {% set title = _('Edit a Question') %} {% set crumbs = [(url('questions.home'), _('Support Forums')), (url('questions.details', question.id), question.title), (None, _('Edit the question'))] %} {% set classes = 'edit-question' %} {% set ga_content_group = "support-forum-question-edit" %} {% if question.product %} {% set ga_products = "/" + question.product.slug + "/" %} {% endif %} {% if question.topic %} {% set ga_topics = "/" + question.topic.slug + "/" %} {% endif %} {% block headline %}{{ _('Edit a Question') }}{% endblock %} {% block major_detail_instructions %}{% endblock %} {% block attachments_form %} {{ attachments_form('questions.Question', question.pk, images, settings, user) }}
{{ _('When editing a question, uploading new images or deleting existing ones will happen instantly.') }}
{% endblock %} {% block submit_button_value %}{{ _('Save Question') }}{% endblock %} {% block more_submit_buttons %} {{ _('Cancel') }} {% endblock %}