1 <!-- question_edit_tips.html -->
2 {% load i18n general_sidebar_tags %}
3 <div class="boxC" id="title_side_bar">
4 <p class="subtitle darkred">{% trans "Title Tips" %}</p>
9 {% blocktrans with settings.APP_SHORT_NAME as app_title %}
10 ask a question relevant to the {{ app_title }} community
15 {% trans "the title must be in the form of a question" %}
18 {% trans "please try provide enough details" %}
21 {% trans "be clear and concise" %}
24 <p class='info-box-follow-up-links'>
25 <a href="{% url faq %}" target="_blank" title="{% trans "see frequently asked questions" %}">{% trans "faq" %} »</a>
32 <div class="boxC" id="tags_side_bar" align="left">
33 <p class="subtitle darkred">{% trans "What Are Tags" %}</p>
34 <ul class="list-item">
36 {% trans "Tags are words that will tell others what this question is about." %}
39 {% trans "They will help other find your question." %}
42 {% blocktrans with settings.FORM_MAX_NUMBER_OF_TAGS as max_number_of_tags and settings.FORM_MIN_NUMBER_OF_TAGS as min_number_of_tags %}
43 A question can have up to {{max_number_of_tags}} tags, but it must have at least {{min_number_of_tags}}.
50 <!-- end question_edit_tips.html -->