{% extends 'dashboard/dashboard_base.html' %} {% block stage %}

Topic Details

{{ topic.title }}
{% for tag in topic.tags.all %}{{ tag.title }}{% if forloop.last %}{% else %}, {% endif %}{% endfor %}
{{ topic.created_by.username }}
{{ topic.category.title }}
{{ topic.status }}
{{ topic.description|safe }}
{% if topic.topic_comments.all %}

Comments({{topic.topic_comments.all|length}})

Comment Details

New Comment

{% for comment in topic.topic_comments.all %}
{{ comment.comment|safe }}
{{ comment.commented_by.username }}
{{ comment.updated_on }}
{% endfor %}
{% else %}

No Comments Available for record

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