{% extends 'layouts/base.html' %} {% load i18n %} {% block title %}{% trans "Settings" %} - PX360{% endblock %} {% block content %}
{% trans "Configure how you receive notifications to stay informed without being overwhelmed." %}
{% trans "Last password change:" %} {% if user.password %}{% trans "Recently" %}{% else %}{% trans "Never" %}{% endif %}
| {% trans "Full Name" %} | {{ user.get_full_name }} |
| {% trans "Email" %} | {{ user.email }} |
| {% trans "Member Since" %} | {{ user.date_joined|date:"F d, Y" }} |
| {% trans "Hospital" %} | {% if user.hospital %}{{ user.hospital.name }}{% else %}{% trans "Not assigned" %}{% endif %} |
| {% trans "Department" %} | {% if user.department %}{{ user.department.name }}{% else %}{% trans "Not assigned" %}{% endif %} |
| {% trans "Employee ID" %} | {{ user.employee_id|default:"N/A" }} |
| {% trans "Role" %} | {% if user.is_px_admin %} {% trans "PX Admin" %} {% elif user.is_hospital_admin %} {% trans "Hospital Admin" %} {% elif user.is_department_head %} {% trans "Department Head" %} {% else %} {% trans "Staff" %} {% endif %} |
{% trans "This information is managed by your organization's administrators. Contact them if you need to update your hospital, department, or employee ID." %}