{% extends "base.html" %} {% load gravatar %} {% load static %} {% load custom_tags %} {% block style %} {% endblock %} {% block content %}

{{ user.username }}

{% if user.userprofile.avatar %} {% else %} {% endif %} {% if request.user == user %}
{% csrf_token %}
{% endif %} {{ user.userprofile.get_title_display }} {% if request.user == user %}
{% csrf_token %}
{% endif %}
{% if request.user != user and request.user.is_authenticated %} {% if request.user.email in followers_list %} {% else %} {% endif %} {% endif %}
{% if activities %} {% else %} {% endif %}
{% for user in followers %}
{% if user.socialaccount_set.all.0.get_avatar_url %} {% else %} {% endif %} {{ user.username }}
{% endfor %}
{% for user in following %}
{% if user.socialaccount_set.all.0.get_avatar_url %} {% else %} {% endif %} {{ user.username }}
{% endfor %}
{% for i in bookmarks %}
{{ i.description|truncatechars:50 }} {{ i.status }}

{{ i.user }}

{% endfor %}
Bugs Reported {{ total_bugs }} Points {{ my_score|default:0 }} Open Issues {{ total_open }} Closed Issues {{ total_closed }}
{{ user.username }}'s activity
{% if activities %}
{% for activity in activities %} {% include '_activity.html' %} {% endfor %}
View All Activity by {{ user.username }} {% else %}
No Activity Yet!
{% endif %}
{{ user.username }}'s top bug findings
{% if websites %}
{% for website in websites %}
{{ website.name|truncatechars:15 }} {{ website.total }} Bug{{ website.total|pluralize }}
{% endfor %}
{% else %}
Nothing Found
{% endif %}
{% endblock %}