{% include 'forum/left_menu.html' %}
{% if user_profile.get_user_suggested_topics %}
User Profile
Name : {{user_profile.user.username}}
email : {{user_profile.user.email}}
{% for category in user_profile.get_user_topic_categories %}
{{ category.title }}
{% endfor %}
-
{% for badge in user_profile.badges.all %}
- {{ badge.title }}{{ badge.get_users|length }} {% endfor %}
{% if user_profile.get_topics %}
{% for topic in user_profile.get_topics %}
{% endfor %}
{% else %}
No Topics Available Now
{% endif %}
{% if user_profile.get_followed_topics %}
{% for topic in user_profile.get_followed_topics %}
{% endfor %}
{% else %}
No Topics Available Now
{% endif %}
{% if user_profile.get_liked_topics %}
{% for topic in user_profile.get_liked_topics %}
{% endfor %}
{% else %}
No Topics Available Now
{% endif %}
Suggested Topics
{% for topic in user_profile.get_user_suggested_topics %}
{% endfor %}
{% endif %}