108 lines
4.5 KiB
HTML
108 lines
4.5 KiB
HTML
{% 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 %}
|
|
<!-- Notification Message -->
|
|
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%">
|
|
<tr>
|
|
<td style="padding-bottom: 20px;">
|
|
<p style="margin: 0; font-size: 16px; color: #1e293b; line-height: 1.6;">
|
|
A new user has successfully completed the onboarding process and is now active in the PX360 system.
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<!-- User Information Card -->
|
|
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%" style="margin: 25px 0; background-color: #f8fafc; border-radius: 8px; border: 1px solid #e2e8f0;">
|
|
<tr>
|
|
<td style="padding: 20px;">
|
|
<h3 style="margin: 0 0 15px 0; font-size: 18px; font-weight: 600; color: #005696; text-align: center;">
|
|
User Information
|
|
</h3>
|
|
|
|
<!-- Detail Rows -->
|
|
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%">
|
|
<tr>
|
|
<td width="120" style="padding: 10px 0; font-size: 14px; color: #64748b; font-weight: 500;">
|
|
Name:
|
|
</td>
|
|
<td style="padding: 10px 0; font-size: 14px; color: #1e293b; font-weight: 600;">
|
|
{{ user.get_full_name|default:"Not provided" }}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="padding: 10px 0; font-size: 14px; color: #64748b; font-weight: 500;">
|
|
Email:
|
|
</td>
|
|
<td style="padding: 10px 0; font-size: 14px; color: #1e293b; font-weight: 600;">
|
|
{{ user.email }}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="padding: 10px 0; font-size: 14px; color: #64748b; font-weight: 500;">
|
|
Username:
|
|
</td>
|
|
<td style="padding: 10px 0; font-size: 14px; color: #1e293b; font-weight: 600;">
|
|
{{ user.username }}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="padding: 10px 0; font-size: 14px; color: #64748b; font-weight: 500;">
|
|
Employee ID:
|
|
</td>
|
|
<td style="padding: 10px 0; font-size: 14px; color: #1e293b; font-weight: 600;">
|
|
{{ user.employee_id|default:"Not provided" }}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="padding: 10px 0; font-size: 14px; color: #64748b; font-weight: 500;">
|
|
Hospital:
|
|
</td>
|
|
<td style="padding: 10px 0; font-size: 14px; color: #1e293b; font-weight: 600;">
|
|
{{ user.hospital.name|default:"Not assigned" }}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="padding: 10px 0; font-size: 14px; color: #64748b; font-weight: 500;">
|
|
Department:
|
|
</td>
|
|
<td style="padding: 10px 0; font-size: 14px; color: #1e293b; font-weight: 600;">
|
|
{{ user.department.name|default:"Not assigned" }}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="padding: 10px 0; font-size: 14px; color: #64748b; font-weight: 500;">
|
|
Completed At:
|
|
</td>
|
|
<td style="padding: 10px 0; font-size: 14px; color: #1e293b; font-weight: 600;">
|
|
{{ user.acknowledgement_completed_at|date:"F j, Y, g:i a" }}
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
{% 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" }}.<br>
|
|
This is an automated notification from PX360.
|
|
{% endblock %}
|
|
|
|
{% block footer_address %}
|
|
PX360 - Patient Experience Platform<br>
|
|
Al Hammadi Hospital
|
|
{% endblock %}
|