{% 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 }}
{% 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 }}