{% extends "base.html" %} {% block extrahead %} {% endblock %} {% block title %} {{ user.first_name }} {{ user.last_name }}{% endblock %} {% block content %} {{block.super}} {% ifequal user profile.user %}

Edit my profile Account settings

{% endifequal %} {# Reusable avatar code #} {% include 'profiles/avatar.html' %}

{{ profile }}

{% if profile.city %} {{ profile.city }}, {{ profile.state }}, {{ profile.country }}
{% endif %} {% if profile.allow_contact %} Contact {{ profile.user.first_name }}
{% endif %} Feed Icon 14x14 {{profile.user.first_name}}'s feed

{% if profile.about %}
{{profile.about|safe}}
{% else %}

No profile information available

{% endif %}

{% if profile.twitter %}

Twitter: {{ profile.twitter }}

{% endif %} {% if profile.facebook %}

Facebook: {{ profile.facebook }}

{% endif %} {% if profile.fax %}

Fax:
{{ profile.fax }}

{% endif %} {% endblock content %}