{% extends "traxauth/base.html" %} {% load i18n %} {% load traxauth_tags %} {% block title %}{% trans "Profile of" %} {{ profile.user.username }}{% endblock %} {% block breadcrumbs-box %} {{ block.super }} › {% trans "Profile of" %} {{ profile.user.username }} {% endblock %} {% block coltype %}profile{% endblock %} {% block content_title %}

{% trans "Profile of" %} {{ profile.user.username }}

{% endblock %} {% block content %}
{% block object-tools %}
{# This is a simple check to determine if the user is the owner of the displayed profile #} {% if user.username == profile.user.username %} {% endif %}
{% endblock %}
{% if settings.TRAXAUTH_ENABLE_GRAVATAR_SUPPORT %}
{% gravatar_for_email profile.user.email 80 %}
{% endif %}

{% trans "Name" %}
{% firstof profile.user.get_full_name profile.user.username %}

{% trans "Location" %}
{% firstof profile.location "N/A" %}

{% trans "Website" %}
{% firstof profile.website "N/A" %}

{% trans "About" %}
{% firstof profile.about "N/A" %}

{% trans "Date joined" %}
{{ profile.user.date_joined }}

{% trans "Last login" %}
{{ profile.user.last_login }}

{% if user.is_staff %}

{% trans "Account id" %}
{{ profile.user.id }}

{% trans "Account active" %}
{{ profile.user.is_active|yesno }}

{% trans "Profile last modified" %}
{{ profile.date_modified|date:"r" }}

{% trans "Staff status" %}
{{ profile.user.is_staff|yesno }}

{% trans "Password is usable" %}
{{ profile.user.has_usable_password|yesno }}

{% endif %}
{% endblock %}