{% extends "profiles/base.html" %} {% load i18n %} {% load gravatar %} {% load app_plugins %} {% block head_title %}{% blocktrans %}Profile for {{ other_user }}{% endblocktrans %}{% endblock %} {% block body %}
{% trans "Name" %}: {{ other_user.get_profile.name }}
{% endif %} {% if other_user.get_profile.about %}{% trans "About" %}: {{ other_user.get_profile.about }}
{% endif %} {% if other_user.get_profile.location%}{% trans "Location" %}: {{ other_user.get_profile.location }}
{% endif %} {% if other_user.get_profile.website %}{% trans "Website" %}: {{ other_user.get_profile.website }}
{% endif %}{% trans "Followers" %}: {{ other_user.followers.count }} {% trans "Following" %}: {{ other_user.followed.count }}
{% if is_me %} {% else %}{% blocktrans %}You are friends with {{ other_user }}.{% endblocktrans %} {% trans "Send a message" %}.
{% else %} {% if previous_invitations_from %}{% blocktrans %}{{ other_user }} has requested friendship.{% endblocktrans %}
{% for invitation in previous_invitations_from %}From {{ invitation.from_user }} ({{ invitation.sent }}):
{% trans "Friendship request sent." %}
{% else %}{% blocktrans %}Sign up and log in to add this person as a friend and see their tweets and blog posts.{% endblocktrans %}
{% endif %} {% endblock %} {% block extra_body %} {% endblock %}