{% extends "two_column_body.html" %} {% import "macros.html" as macros %} {% block title %}{% filter trim %}{% trans %}Ask Your Question{% endtrans %}{% endfilter %}{% endblock %} {% block layout_class %}{{ super() }} ask-page{% endblock %} {# main contents of ask form is in the template input_bar #} {% block sidebar %} {% if settings.EDITOR_TYPE == 'markdown' %} {% endif %} {% endblock %} {% block content %}
{% include "ask/question_edit_tips.html" %}
{% include "ask/ask_form.html" %} {% endblock %} {% block endjs %} {% compress js %} {% endcompress %} {% if settings.EDITOR_TYPE == 'markdown' %} {% compress js %} {% include "meta/markdown_javascript.html" %} {% endcompress %} {% endif %} {% include "meta/editor_data.html" %} {% if mandatory_tags %} {% include "meta/mandatory_tags_js.html" %} {% endif %} {% if settings.TAG_SOURCE == 'category-tree' %} {% include "meta/category_tree_js.html" %} {% endif %} {% endblock %} {% block js_templates %} {{ macros.tag_widget('none', deletable=True) }} {% endblock %}