{% extends "answers/base.html" %} {% load i18n %} {% load comments %} {% load staticfiles %} {% block document %}
< {% trans 'All Questions' %}
{% if messages %} {% endif %}
{% if is_following %} {% else %} {% endif %} {% if is_user_vote %}
My vote: {% trans 'Upvote' %}
{% else %} {% endif %}
{% get_comment_count for question as answers_count %}

{{question.title}}

{{question.text}}

Asked by {{question.user}}

{{answers_count}} Answers

{% get_comment_list for question as answer_list %} {% for comment in answer_list %}

#{{ forloop.counter }} {{comment.user}}

{{comment.comment}}

{{comment.created_at|date:"M d, Y"}}
{% endfor %} {% if user.is_authenticated %} {% get_comment_form for question as form %}
My Answer: {% csrf_token %} {{ form.honeypot }} {{ form.content_type }} {{ form.object_pk }} {{ form.timestamp }} {{ form.security_hash }} {{ form.comment }}
{% else %}

Please log in to leave a comment.

{% endif %}
{% endblock %} {% block sidebar %} {% endblock %} {% block bodyscripts %} {{block.super}} {% if request|is_broker_manager %} {% endblock %}