{% load bootstrap3 %} {% load django_markdown %} {% load humanize %} {% load fromnow from date %} {% load proposal_filters %} {% if not comments %}

No comments added so far.

{% endif %} {% for comment in comments %}
{{ comment.get_votes_count }}
{{ comment.comment|markdown }} {% if comment.private %} {% if comment.commenter == proposal.author %} Comment by proposer. {% else %} Comment by {{comment.get_reviewer_nick}}. {% endif %} {% else %} {% if comment.commenter.get_full_name %} {{ comment.commenter.get_full_name }} (~{{ comment.commenter.username }}) {% else %} {{ comment.commenter.username }} {% endif %} {% endif %}
{% endfor %}
{% if write_private_comment or not review_comments and user.is_authenticated %} add a comment {% elif read_private_comment %} {% else %}

Login to add a new comment.

{% endif %}
{% block script_extra %} {% endblock %}