summaryrefslogtreecommitdiffstats
path: root/askbot/templates/question_edit.html
diff options
context:
space:
mode:
Diffstat (limited to 'askbot/templates/question_edit.html')
-rw-r--r--askbot/templates/question_edit.html11
1 files changed, 10 insertions, 1 deletions
diff --git a/askbot/templates/question_edit.html b/askbot/templates/question_edit.html
index 1aaa972c..ee979fb8 100644
--- a/askbot/templates/question_edit.html
+++ b/askbot/templates/question_edit.html
@@ -16,13 +16,22 @@
name="select_revision"
value="false">
</div>
+ <div class="form-item">
+ <label for="id_title" >
+ {% trans %}Question - in one sentence{% endtrans %}
+ {% if form.title.errors %}
+ {{ form.title.errors }}
+ {% endif %}
+ </label>
+ {{ form.title }}
+ </div>
+ <label for="editor">{% trans %}Details{% endtrans %}</label>
{% set use_category_selector = (settings.TAG_SOURCE == 'category-tree') %}
{{
macros.edit_post(
form,
post_type = 'question',
post_html = revision.text,
- edit_title = True,
mandatory_tags = mandatory_tags,
use_category_selector = use_category_selector,
tag_names = tag_names,