{% extends subsite.theme %} {% load comments %} {% block content %}
{% include "brainstorm/idea_vote.html" %}
{% get_comment_list for idea as comments %}

{{ comments|length }} Comments

    {% for comment in comments %}
  1. {% if comment.user_url %}{% endif %} {{comment.user_name}} {% if comment.user_url %}{% endif %} {{comment.submit_date|date:"m/d P"}}

    {{comment.comment|urlize}}

  2. {% endfor %}
{% get_comment_form for idea as comment_form %}
{{ comment_form.as_p }}
{% endblock content %}