{% extends "two_column_body.html" %} {% block title %}{% trans %}Help{% endtrans %}{% endblock %} {% block content %}

{% trans %}Help{% endtrans %}

{% if request.user.is_authenticated() %} {% trans username = request.user.username %}Welcome {{username}},{% endtrans %} {% else %} {% trans %}Welcome,{% endtrans %} {% endif %}

{% trans %}Thank you for using {{app_name}}, here is how it works.{% endtrans %}

{% trans %}This site is for asking and answering questions, not for open-ended discussions.{% endtrans %} {% trans %}We encourage everyone to use “question” space for asking and “answer” for answering.{% endtrans %}

{% trans %}Despite that, each question and answer can be commented – the comments are good for the limited discussions.{% endtrans %}

{% trans %}Voting in {{app_name}} helps to select best answers and thank most helpful users.{% endtrans %}

{% trans %}Please vote when you find helpful information, it really helps the {{app_name}} community.{% endtrans %} {% trans %}Besides, you can @mention users anywhere in the text to point their attention, follow users and conversations and report inappropriate content by flagging it.{% endtrans %}

{% trans %}Enjoy.{% endtrans %}

{% endblock %}