{% extends 'forum/base.html' %} {% load forum_tags %} {% load thumbnail %} {% block stage %}
{% include 'forum/left_menu.html' %}
{% if not request.user.is_authenticated %} {% endif %}

{{ topic.title|capfirst }}

{% if topic.created_by == request.user %} Update delete {% endif %}

{{topic.description|safe}}

{{ topic.category.title }} Replies {{ topic.get_all_comments|length }} Views {{ topic.no_of_views }} Users {{ topic.get_topic_users|length }}
{% if request.user.is_authenticated %} {% endif %} {% for comment in topic.get_all_comments %} {% endfor %}
{% for comment in topic.get_comments %}
{% if comment.get_comments %}
Replies {{ comment.get_comments|length }}
{% endif %} {% if comment.commented_by == request.user %} {% endif %}
{% for comment in comment.comment_parent.all %} {% for comment in comment|sub_comments %}
{% if comment.commented_by == request.user %}
Edit
{% endif %}
{% endfor %} {% endfor %} {% endfor %}
{% if suggested_topics %}

Suggested Topics

{% for topic in suggested_topics %}
    {% for user in topic.get_topic_users %}
  • {% endfor %}

{% endfor %}
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}