{% extends 'profile/base.html' %} {% load humanize %} {% load qa_tags %} {% block content %} User {{profileData.user}} - Stack Overflow
{{profileData.user}}
{{profileData.title}}
  • Joined {{profileData.user.date_joined|naturaltime}}
  • {% if not profileData.is_high_moderator %}
  • Last Seen {{ online_user_activity.last_activity|naturaltime }}
  • {% endif %}
  • {{profileData.location}}
Profile Activity {% if request.user.is_authenticated %} {% if request.user == profileData.user %} Settings {% endif %} {% endif %}
Stats
{{profileData.user|calculate_reputation}}
reputation
{{getAllTheViewsOfAllTheQuestion.total_views__sum}}
reached
{{profileData.user|count_answers_by_user}}
answer{{profileData.user|count_answers_by_user|pluralize}}
{{profileData.user|count_questions_by_user}}
question{{profileData.user|count_questions_by_user|pluralize}}
About

{% if profileData.about_me == None %} About me is Blank {% else %} {{profileData.about_me}} {% endif %}

{% if goldBadges %}
{{goldBadges.count}}
gold badges
{% else %}
This user doesn’t have any gold badges yet.
{% endif %}
{% if silverBadges %}
{{silverBadges.count}}
silver badge
{% else %}
This user doesn’t have any gold badges yet.
{% endif %}
{% if bronzeBadges %}
{{bronzeBadges.count}}
bronze badges
{% else %}
This user doesn’t have any gold badges yet.
{% endif %}
{% if topTags %}
{% for topTag in topTags %}
Score
Posts
Posts
{% endfor %}
{% else %}
This user has not participated in any tags.
{% endif %}
Top posts
{% for post in results %}
{% if post.post_owner %} {% else %} {% endif %}
{% if post.post_owner %}{{post.calculate_UpVote_DownVote}}{% else %}{{post.countAllTheVotes}}{% endif %}
{{post.date}}
{% endfor %}
{% for question in questions %}
{{question.calculate_UpVote_DownVote}}
{{question.date}}
{% endfor %}
{% for answer in answers %}
{{answer.countAllTheVotes}}
{{answer.date}}
{% endfor %}
 
{% endblock content %}