summaryrefslogtreecommitdiffstats
path: root/askbot/skins/default/templates/widgets/ask_form.html
diff options
context:
space:
mode:
Diffstat (limited to 'askbot/skins/default/templates/widgets/ask_form.html')
-rw-r--r--askbot/skins/default/templates/widgets/ask_form.html5
1 files changed, 3 insertions, 2 deletions
diff --git a/askbot/skins/default/templates/widgets/ask_form.html b/askbot/skins/default/templates/widgets/ask_form.html
index 86f10782..d528609f 100644
--- a/askbot/skins/default/templates/widgets/ask_form.html
+++ b/askbot/skins/default/templates/widgets/ask_form.html
@@ -3,7 +3,6 @@
<div class="form-item">
<div id="askFormBar">
{% if not request.user.is_authenticated() %}
- <p>{% trans %}login to post question info{% endtrans %}</p>
<p>{% trans %}<span class=\"strong big\">You are welcome to start submitting your question anonymously</span>. When you submit the post, you will be redirected to the login/signup page. Your question will be saved in the current session and will be published after you log in. Login/signup process is very simple. Login takes about 30 seconds, initial signup takes a minute or less.{% endtrans %}</p>
{% else %}
{% if settings.EMAIL_VALIDATION %}
@@ -28,9 +27,11 @@
edit_title = False,
mandatory_tags = mandatory_tags,
use_category_selector = (settings.TAG_SOURCE == 'category-tree'),
- editor_type = settings.EDITOR_TYPE
+ editor_type = settings.EDITOR_TYPE,
+ user = request.user
)
}}
+ {{ form.group_id }}
<div class="question-options">
{% if settings.WIKI_ON %}
{{ macros.checkbox_in_div(form.wiki) }}