1 {% extends "base_content.html" %}
 
   2 <!-- template faq.html -->
 
   6 {% block title %}{% spaceless %}FAQ{% endspaceless %}{% endblock %}
 
  10 <div class="headNormal">
 
  11     {% trans "Frequently Asked Questions " %}(FAQ)
 
  13 <div id="main-body" class="about" style="width:100%">
 
  16             <h3 class="subtitle">{% trans "What kinds of questions can I ask here?" %}</h3>
 
  17             <p>{% trans "Most importanly - questions should be <strong>relevant</strong> to this community." %}
 
  18             {% trans "Before asking the question - please make sure to use search to see whether your question has alredy been answered."%}
 
  21                 <h3 class="subtitle">{% trans "What questions should I avoid asking?" %}</h3>
 
  22             <p>{% trans "Please avoid asking questions that are not relevant to this community, too subjective and argumentative." %}
 
  27             <h3 class="subtitle">{% trans "What should I avoid in my answers?" %}</h3>
 
  28             <p>{{ settings.APP_TITLE }} {% trans "is a Q&A site, not a discussion group. Therefore - please avoid having discussions in your answers, comment facility allows some space for brief discussions." %}</p>
 
  32             <h3 class="subtitle">{% trans "Who moderates this community?" %}</h3>
 
  33             <p>{% trans "The short answer is: <strong>you</strong>." %}
 
  34             {% trans "This website is moderated by the users." %}
 
  35             {% trans "The reputation system allows users earn the authorization to perform a variety of moderation tasks." %} 
 
  40             <h3 class="subtitle">{% trans "How does reputation system work?" %}</h3>
 
  41             <p>{% trans "Rep system summary" %}</p>
 
  42             <p>{% blocktrans %}For example, if you ask an interesting question or give a helpful answer, your input will be upvoted. On the other hand if the answer is misleading - it will be downvoted. Each vote in favor will generate <strong>10</strong> points, each vote against will subtract <strong>2</strong> points. There is a limit of <strong>200</strong> points that can be accumulated per question or answer. The table below explains reputation point requirements for each type of moderation task.{% endblocktrans %}
 
  45             <table style="font-family:arial;" cellspacing="3" cellpadding="3">
 
  47                     <th width="40px" style="text-align:right"></th>
 
  48                     <th width="300px"></th>
 
  52                     <td style="text-align:right;padding-right:5px"><strong>15</strong></td>
 
  53                     <td>{% trans "upvote" %}</td>
 
  56                     <td style="text-align:right;padding-right:5px"><strong>15</strong></td>
 
  57                     <td>{% trans "use tags" %}</td>
 
  61                     <td style="text-align:right;padding-right:5px"><strong>50</strong></td>
 
  62                     <td>{% trans "add comments" %}</td>
 
  65                     <td style="text-align:right;padding-right:5px"><strong>100</strong></td>
 
  66                     <td>{% trans "downvote" %}</td>
 
  68                     <td style="text-align:right;padding-right:5px"><strong>250</strong></td>
 
  69                     <td>{% trans "open and close own questions" %}</td>
 
  72                     <td style="text-align:right;padding-right:5px"><strong>500</strong></td>
 
  73                     <td>{% trans "retag questions" %}</td>
 
  75                 {% if settings.WIKI_ON %}
 
  77                     <td style="text-align:right;padding-right:5px"><strong>750</strong></td>
 
  78                     <td>{% trans "edit community wiki questions" %}</td>
 
  82                     <td style="text-align:right;padding-right:5px"><strong>2000</strong></td>
 
  83                     <td>{% trans "edit any answer" %}</td>
 
  86                     <td style="text-align:right;padding-right:5px"><strong>3000</strong></td>
 
  87                     <td>{% trans "open any closed question" %}</td>
 
  90                     <td style="text-align:right;padding-right:5px"><strong>5000</strong></td>
 
  91                     <td>{% trans "delete any comment" %}</td>
 
  94                     <td style="text-align:right;padding-right:5px"><strong>10000</strong></td>
 
  95                     <td>{% trans "delete any questions and answers and perform other moderation tasks" %}</td>
 
 101         {% ifequal settings.EMAIL_VALIDATION 'on' %}
 
 103             <a id='validate'></a><h3 class="subtitle">{% trans "how to validate email title" %}</h3>
 
 104             <!--special case here message must contain paragraphs-->
 
 105             {% blocktrans %}how to validate email info with {{send_email_key_url}} {{gravatar_faq_url}}{% endblocktrans %}
 
 110             <a id='gravatar'></a><h3 class="subtitle">{% trans "what is gravatar" %}</h3>
 
 111             <p>{% trans "gravatar faq info" %}</p>
 
 114             <h3 class="subtitle">{% trans "To register, do I need to create new password?" %}</h3>
 
 115             <p>{% trans "No, you don't have to. You can login through any service that supports OpenID, e.g. Google, Yahoo, AOL, etc." %}
 
 116             <strong><a href="{% url auth_signin %}">{% trans "Login now!" %}</a> ยป</strong> 
 
 121             <h3 class="subtitle">{% trans "Why other people can edit my questions/answers?" %}</h3>
 
 122             <p> {% trans "Goal of this site is..." %} {% trans "So questions and answers can be edited like wiki pages by experienced users of this site and this improves the overall quality of the knowledge base content." %}
 
 123             {% trans "If this approach is not for you, we respect your choice." %}
 
 127             <h3 class="subtitle">{% trans "Still have questions?" %}</h3>
 
 128             <p>{% blocktrans %}Please ask your question at {{ask_question_url}}, help make our community better!{% endblocktrans %} 
 
 130             <a href="{% url tags %}faq" class="big">{{ settings.APP_TITLE }} {% trans "questions" %}</a>{% trans "." %}
 
 135 <script type="text/javascript">
 
 136     //highlihts section if url has matching #anchor_name
 
 137     $(document).ready(function (){
 
 138         var hash = window.location.hash;
 
 139         if (hash.length > 1){
 
 140             $(hash).parent().addClass('highlight');
 
 141             window.location.hash = hash;
 
 146 <!-- end template faq.html -->