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

Category Details

{{ category.title }}
{{ category.is_votable }}
{{ category.color }}
{{ category.is_active }}
{{ category.created_by }}
{% if category.topic_set.all %}

Topics({{category.topic_set.all|length}})

{% for topic in category.topic_set.all %} {% endfor %}
# Title Category Status No Of Likes No Of Users No Of Votes No Of Comments Actions
{{ topic.id }} {{ topic.title }} {{ topic.category.title }} {{ topic.status }} {{ topic.no_of_likes }} {{ topic.get_topic_users|length }} {{ topic.no_of_votes }} {{ topic.topic_comments.all|length }}
{% else %}

No Topics Available for record

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