{% extends "users/base.html" %}
{% load markup cache timesince_filters %}
{% block extra_title %}
{{ block.super }}: {{ user.display_name }}
{% endblock%}
{% block description %}{{ site.name }} Community: {{ user.display_name }} Profile{% endblock %}
{% block canonical %}
{% endblock %}
{% block content %}
{% if authenticated_request %}
{% endif %}
{{ user.display_name }}
{% if user.bio %}
- About
- {{ user.bio|markdown }}
{% endif %}
- Member since:
- {{ user.date_joined|date:"M j, Y"}}
{% if user.gender %}
- Gender:
- {{ user.get_gender_display }}
{% endif %}
{% if user.birthday %}
- Age:
- {{ user.birthday|short_timesince }}
{% endif %}
{% if user.homepage %}
- Homepage:
- {{ user.homepage }}
{% endif %}
{% if user.city or user.state or user.country %}
- Location:
-
{% if user.city %}{{ user.city }}, {% endif %}
{{ user.state }}
{% if user.country %}{{ user.country }}{% endif %}
{% endif %}
{% if user.occupation %}
- Occupation:
- {{ user.occupation }}
{% endif %}
{% if user.interests %}
- Interests:
- {{ user.interests }}
{% endif %}
{% endblock %}