diff --git a/get_together/templates/get_together/users/show_profile.html b/get_together/templates/get_together/users/show_profile.html
index 73a4bd5..8c86d34 100644
--- a/get_together/templates/get_together/users/show_profile.html
+++ b/get_together/templates/get_together/users/show_profile.html
@@ -56,6 +56,16 @@
{% endif %}
+ {% if badges %}
+
Badges
+
+ {% for badge in badges %}
+
+
{{badge.name}}
+
+ {% endfor %}
+
+ {% endif %}
{% if teams %}
Teams
diff --git a/get_together/views/user.py b/get_together/views/user.py
index e7866da..5c76e61 100644
--- a/get_together/views/user.py
+++ b/get_together/views/user.py
@@ -65,10 +65,12 @@ def show_profile(request, user_id):
teams = user.memberships.all()
talks = Talk.objects.filter(speaker__user=user)
+ badges = user.user.account.badges.all()
context = {
'user': user,
'teams': teams,
'talks': talks,
+ 'badges': badges,
}
return render(request, 'get_together/users/show_profile.html', context)