{% extends 'emails/base_email_template.html' %}
{% load i18n %}
{% block title %}{% trans "User Onboarding Completed - Al Hammadi Hospital" %}{% endblock %}
{% block preheader %}{% trans "A new user has completed onboarding and is now active." %}{% endblock %}
{% block hero_title %}✅ {% trans "User Onboarding Completed" %}{% endblock %}
{% block hero_subtitle %}{% trans "A new team member has joined PX360" %}{% endblock %}
{% block content %}
|
{% trans "A new user has successfully completed the onboarding process and is now active in the PX360 system." %}
|
{% trans "User Information" %}
|
{% trans "Name:" %}
|
{{ user.get_full_name|default:_("Not provided") }}
|
|
{% trans "Email:" %}
|
{{ user.email }}
|
|
{% trans "Role:" %}
|
{{ role_display|default:_("Not assigned") }}
|
|
{% trans "Department:" %}
|
{{ department|default:_("Not assigned") }}
|
|
{% trans "Completed At:" %}
|
{{ completed_at|date:"Y-m-d H:i" }}
|
|
{% trans "Next Steps" %}
{% trans "The user can now access PX360 and begin using the platform. You may want to:" %}
- {% trans "Welcome them to the team" %}
- {% trans "Provide role-specific training if needed" %}
- {% trans "Assign initial tasks or responsibilities" %}
- {% trans "Introduce them to relevant team members" %}
|
|
{% trans "If you need to make any changes to this user's account, please visit the admin panel or contact support." %}
|
{% endblock %}