{% extends 'emails/base_email_template.html' %}
{% block title %}User Onboarding Completed - Al Hammadi Hospital{% endblock %}
{% block preheader %}A new user has completed onboarding and is now active.{% endblock %}
{% block hero_title %}✅ User Onboarding Completed{% endblock %}
{% block hero_subtitle %}A new team member has joined PX360{% endblock %}
{% block content %}
|
A new user has successfully completed the onboarding process and is now active in the PX360 system.
|
User Information
|
Name:
|
{{ user.get_full_name|default:"Not provided" }}
|
|
Email:
|
{{ user.email }}
|
|
Username:
|
{{ user.username }}
|
|
Employee ID:
|
{{ user.employee_id|default:"Not provided" }}
|
|
Hospital:
|
{{ user.hospital.name|default:"Not assigned" }}
|
|
Department:
|
{{ user.department.name|default:"Not assigned" }}
|
|
Completed At:
|
{{ user.acknowledgement_completed_at|date:"F j, Y, g:i a" }}
|
|
{% endblock %}
{% block cta_url %}{{ user_detail_url }}{% endblock %}
{% block cta_text %}View User Details{% endblock %}
{% block info_title %}Notification Details{% endblock %}
{% block info_content %}
This notification was sent on {{ "now"|date:"F j, Y, g:i a" }}.
This is an automated notification from PX360.
{% endblock %}
{% block footer_address %}
PX360 - Patient Experience Platform
Al Hammadi Hospital
{% endblock %}