Account Information
User ID
{{ id | default('Not available') }}
{% if givenName %}
First Name
{{ givenName }}
{% endif %}
{% if surname %}
Last Name
{{ surname }}
{% endif %}
{% if userPrincipalName %}
User Principal Name
{{ userPrincipalName }}
{% endif %}
{% if preferredLanguage %}
Preferred Language
{{ preferredLanguage }}
{% endif %}
Contact Details
{% if businessPhones and businessPhones|length > 0 %}
Business Phone
{{ businessPhones[0] }}
{% endif %}
{% if mobilePhone %}
Mobile Phone
{{ mobilePhone }}
{% endif %}
{% if officeLocation %}
Office Location
{{ officeLocation }}
{% endif %}
{% if mail %}
Email Address
{{ mail }}
{% endif %}
Working Hours
{{ working_hours | default('9:00 AM - 5:30 PM') }}