{% extends "base.html" %} {% load static %} {% block title %}My Profile - {{ block.super }}{% endblock %} {% block css %} {% endblock %} {% block content %}
{% if user.employee_profile.profile_picture %} {{ user.employee_profile.get_full_name }} {% else %}
{% endif %}

{{ user.employee_profile.get_full_name }}

{{ user.employee_profile.get_role_display }} • {{ user.employee_profile.department|default:"No Department" }}

Profile Information
{% csrf_token %}
Personal Information
Preferences
Active Sessions {{ active_sessions.count }}
{% if active_sessions %} {% for session in active_sessions %}
{{ session.device_type|title }}
{{ session.ip_address }} • {{ session.location|default:"Unknown" }}
{{ session.last_activity_at|timesince }} ago
{% if session.is_current_session %} Current {% else %} {% endif %}
{% endfor %} {% else %}

No active sessions

{% endif %}
Two-Factor Authentication
{% if two_factor_devices %} {% for device in two_factor_devices %}
{{ device.name }}
{{ device.get_device_type_display }} {% if device.phone_number %} • {{ device.phone_number }}{% endif %}
Added {{ device.created_at|date:"M d, Y" }}
{% if device.is_verified %} Verified {% else %} Pending {% endif %}
{% endfor %} {% else %}

No two-factor devices configured

Add a device to enhance your account security

{% endif %}
Connected Accounts
{% if social_accounts %} {% for account in social_accounts %} {% endfor %} {% else %}

No connected accounts

{% endif %}
{% endblock %} {% block js %} {% endblock %}