{% extends 'faq/question_base.html' %} {% block question_content %} {% if allow_multiple_answers %}

answers

{% else %} {% if question.answer_set.exists %}

answer:

{% if question.answer_set.first.is_rich_text %}

{{question.answer_set.first.answer|safe}}

{% else %}

{{question.answer_set.first.answer}}

{% endif %} {% if can_vote_answer %} found this answer helpful?
{% csrf_token %}
{% csrf_token %}
{% endif %} {% else %} no answers yet {% endif %} {% endif %} {% if can_answer_question %} {% if category_enabled %} answer question {% else %} answer question {% endif %} {% endif %}
{% if comments_allowed %} {% include 'faq/comments.html' %} {% endif %} {% endblock %}