{% extends "base.html" %} {% load static i18n %} {% load thumbnail %} {% block title %}{{ object.username }}{% endblock %} {% block head %} {% endblock head %} {% block content %}
{% thumbnail object.picture "x250" as im %} Picture Profile {% empty %} No Profile Picture {% endthumbnail %}

{{ object.username|title }} {% if object.short_bio %}
{{ object.short_bio }} {% endif %}

{{ object.get_profile_name|title }}

{% if object.job_title %} {{ object.job_title }}
{% endif %} {% if object.location %} {{ object.location }}
{% endif %}

{{ object.bio }}

{% if object.personal_url %} {% endif %} {% if object.twitter_account %} {% endif %} {% if object.github_account %} {% endif %} {% if object.linkedin_account %} {% endif %} {% if object.facebook_account %} {% endif %} {% trans 'Update Profile' %}
{% if request.user.username == object.username %}
{% trans 'Feeds' %}
0
{% trans 'Articles' %}
0
{% trans 'Comments' %}
0
{% trans 'Questions' %}
0
{% trans 'Answers' %}
0
{% trans 'Global Interactions' %}
0
{% endif %} {% endblock content %}