User Details
{{ user.username }}
{{ user.email }}
{% if user_profile.badges.all %}
{% for badge in user_profile.badges.all %}{{ badge.title }}{% if forloop.last %}{% else %}, {% endif %}{% endfor %}
{% endif %}
{% if user.is_active %} True{% else %}False{% endif %}
{{ user_profile.user_roles }}
{% if user_created_topics %}
{% endfor %}
{% else %}
No Topics Available for a topic
{% endif %}
User Topics
{% for topic in user_created_topics %}
{{ topic.created_on }}
{{ topic.status }}
{{ topic.no_of_votes }}
{{ topic.no_of_down_votes }}
{% if user_liked_topics %}
{% endfor %}
{% else %}
User didnt like any topic
{% endif %}
Liked Topics
{% for topic in user_liked_topics %}
{{ topic.topic.created_on }}
{{ topic.topic.status }}
{{ topic.no_of_votes }}
{{ topic.no_of_down_votes }}
{% if user_followed_topics %}
{% endfor %}
{% else %}
User didnot Follow Any Topic
{% endif %}
Followed Topics
{% for topic in user_followed_topics %}
{{ topic.topic.created_on }}
{{ topic.followed_on }}
{{ topic.topic.status }}
{{ topic.no_of_votes }}
{{ topic.no_of_down_votes }}