{% extends 'accounts/base.html' %} {% load static %} {% block title %}Profile - {{ profile_user.get_full_name|default:profile_user.username }} - {{ block.super }}{% endblock %} {% block content %}
{% if profile_user.avatar %} {{ profile_user.get_full_name|default:profile_user.username }} {% else %}
{% endif %}

{{ profile_user.get_full_name|default:profile_user.username }} {% if profile_user.is_verified %} {% endif %}

{{ profile_user.username }}

{% if profile_user.userprofile.job_title %}

{{ profile_user.userprofile.job_title }} {% if profile_user.userprofile.company %} at {{ profile_user.userprofile.company }} {% endif %}

{% endif %} {% if profile_user.userprofile.location_city or profile_user.userprofile.location_country %}

{% if profile_user.userprofile.location_city %}{{ profile_user.userprofile.location_city }}{% endif %} {% if profile_user.userprofile.location_city and profile_user.userprofile.location_country %}, {% endif %} {% if profile_user.userprofile.location_country %}{{ profile_user.userprofile.location_country }}{% endif %}

{% endif %}

Member since {{ profile_user.date_joined|date:"F Y" }}

{% if user == profile_user %} Edit Profile
Dashboard {% else %}
{% endif %}
About
{% if profile_user.bio %}
Bio

{{ profile_user.bio|linebreaks }}

{% endif %}
Contact Information
{{ profile_user.email }}
{% if profile_user.phone_number %}
{{ profile_user.phone_number }}
{% endif %} {% if profile_user.userprofile.website %} {% endif %} {% if profile_user.userprofile.linkedin %} {% endif %}
Professional Information
{% if profile_user.userprofile.job_title %}
{{ profile_user.userprofile.job_title }}
{% endif %} {% if profile_user.userprofile.company %}
{{ profile_user.userprofile.company }}
{% endif %} {% if profile_user.userprofile.department %}
{{ profile_user.userprofile.department }}
{% endif %}
{{ profile_user.get_language_display|default:"English" }}
{{ profile_user.timezone_field|default:"UTC" }}
{% if not profile_user.bio and not profile_user.phone_number and not profile_user.userprofile.website and not profile_user.userprofile.linkedin and not profile_user.userprofile.job_title and not profile_user.userprofile.company %}

No additional information available

{% if user == profile_user %} Add Information {% endif %}
{% endif %}
Activity

{{ profile_user.date_joined|timesince }}

Member for

{% if profile_user.last_login %} {{ profile_user.last_login|timesince }} ago {% else %} Never {% endif %}

Last seen

{% if profile_user.is_active %} Online {% else %} Offline {% endif %}

Status
Quick Info
Account Type: {% if profile_user.is_superuser %} Super Admin {% elif profile_user.is_staff %} Staff {% else %} User {% endif %}
Verification: {% if profile_user.is_verified %} Verified {% else %} Unverified {% endif %}
Status: {% if profile_user.is_active %} Active {% else %} Inactive {% endif %}
Joined: {{ profile_user.date_joined|date:"M d, Y" }}
{% if user != profile_user %}
Contact
{% endif %} {% if profile_user.userprofile.location_address or profile_user.userprofile.location_city or profile_user.userprofile.location_state or profile_user.userprofile.location_country or profile_user.userprofile.location_postal_code %}
Location
{% if profile_user.userprofile.location_address %}

{{ profile_user.userprofile.location_address }}

{% endif %}

{% if profile_user.userprofile.location_city %}{{ profile_user.userprofile.location_city }}{% endif %} {% if profile_user.userprofile.location_city and profile_user.userprofile.location_state %}, {% endif %} {% if profile_user.userprofile.location_state %}{{ profile_user.userprofile.location_state }}{% endif %} {% if profile_user.userprofile.location_postal_code %} {{ profile_user.userprofile.location_postal_code }}{% endif %}

{% if profile_user.userprofile.location_country %}

{{ profile_user.userprofile.location_country }}

{% endif %}
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}