{% extends "base.html" %} {% load static %} {% load i18n %} {% block title %}{% trans "User Profile" %} - KAAUH ATS{% endblock %} {% block customCSS %} {% endblock %} {% block content %}

{% trans "Account Settings" %}

{% trans "Manage your personal details and security." %}

{% if user.profile_image %} {{ user.username }} {% else %} {% if user.first_name %}{{ user.first_name.0 }}{% else %}{% endif %} {% endif %}
{% trans "Personal Information" %}
{% csrf_token %}
{% trans "Security" %}
{% trans "Change Password" %}
{% trans "Account Status" %}
{% trans "Username" %}
{{ user.username }}
{% trans "Last Login" %}
{% if user.last_login %}{{ user.last_login|date:"F d, Y P" }}{% else %}N/A{% endif %}
{% trans "Date Joined" %}
{{ user.date_joined|date:"F d, Y" }}
{% endblock %}