summaryrefslogtreecommitdiffstats
path: root/askbot/templates/widgets/question_edit_tips.html
blob: f60304c1570bfc6edeafaa762f482039a66dc63f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!-- question_edit_tips.html -->
<div id ="tips" class="box">
    <h2>{% trans %}Tips{% endtrans %}</h2>
    <ul>
        <li> <b>{% trans %}ask a question interesting to this community{% endtrans %}</b>
        </li>
        <li>
            {% trans %}provide enough details{% endtrans %}
        </li>
        <li>
            {% trans %}be clear and concise{% endtrans %}
        </li>
    </ul>
    <p class='info-box-follow-up-links'>
<!-- will be change to a popup windows
        <a href="{% url faq %}" target="_blank" title="{% trans %}see frequently asked questions{% endtrans %}">{% trans %}FAQ{% endtrans %} »</a>
-->
    </p>
</div>
{% if settings.EDITOR_TYPE == 'markdown' %}
    {% include "/widgets/markdown_help.html" %}
{% endif %}