{% include 'forum/left_menu.html' %}
{% for comment in topic.get_comments %}
{% endfor %}
{% endfor %}
{% endfor %}
{% if suggested_topics %}
{{ topic.title|capfirst }}
{% if request.user.is_authenticated %}
{% if topic.id|is_topic_followed:request.user.id %}Followed{% else %}Follow{% endif %}
{% endif %}
{{ topic.no_of_down_votes }}Votes{{ topic.no_of_votes }}
{{topic.description|safe}}
Created By{{ topic.created_by.username }}, {{ topic.created_on }}
{% if topic.get_last_comment %}
Last Replied By{{ topic.get_last_comment.commented_by.username }}, {{ topic.get_last_comment.updated_on }}
{% endif %}
{{ comment.comment|safe }}
{{ comment.comment|safe }}
Suggested Topics
{% for topic in suggested_topics %}
{% endfor %}
{% endif %}
Write Reply For {{ topic.title }}