<form id="fmask" action="" method="post" accept-charset="utf-8">
{% if not request.user.is_authenticated %}
<div class="message">
- <p>{% trans "login to post question info" %}</p>
+ <span class="strong big">{% trans "You are welcome to start submitting your question anonymously." %}</span>
+ <p>{% blocktrans %}
+ After submiting your question, you will be redirected to the login/signup page.
+ Your question will be saved in the current session and will be published after you login with your existing account,
+ or signup for a new account{% endblocktrans %}{% if "ask" in settings.REQUIRE_EMAIL_VALIDATION_TO %}
+ {% trans "and validate your email." %}{% else %}.{% endif %}</p>
</div>
{% else %}
- {% ifequal settings.EMAIL_VALIDATION 'on' %}
- {% if not request.user.email_isvalid %}
- <div class="message">
- {% blocktrans with request.user.email as email %}must have valid {{email}} to post,
- see {{email_validation_faq_url}}
- {% endblocktrans %}
- </div>
- {% endif %}
- {% endifequal %}
+ {% if not request.user.email_valid_and_can_ask %}
+ <div class="message">
+ {% blocktrans %}Remember, your question will not be published until you validate your email.{% endblocktrans %}
+ <a href="{% url send_validation_email %}">{% trans "Send me a validation link." %}</a>
+ </div>
+ {% endif %}
{% endif %}
<div class="form-item">
<label for="id_title" ><strong>{{ form.title.label_tag }}:</strong></label> <span class="form-error"></span><br/>