{% extends "base.html" %} {% load gravatar %} {% block content %}

{{user.username}}

{% if user.socialaccount_set.all.0.get_avatar_url %} {% else %} {% gravatar user.email 150 %} {% endif %}

{{my_score}} points

{{user.username}}'s activity
{% for activity in activities %} {% include '_activity.html' %} {% endfor %}
{{user.username}}'s top bug findings
{% for website in websites %}
{{website.name}} {{website.total}} bugs
{% endfor %}
{% endblock %}