HH/templates/accounts/onboarding/invitation_email.html
ismail 7369d08012
All checks were successful
Build and Push Docker Image / build (push) Successful in 4m14s
feat: unified reference numbers + feedback modules QA audit
Reference numbers (unified scheme PREFIX-YYYYMM-HOSP-NNNN, e.g. CMP-202606-HHN-0001):
- new ReferenceSequence model + generate_reference() helper (apps/core)
- Complaint/Inquiry/Observation/Appreciation/Suggestion emit unified refs via save()
- prefix-based auto-routing in public track API (CMP/INQ/OBS trackable; APR/SGT internal-only)
- removed legacy CMP-/INQ- generators in ui_views, integrations, px_sources
- migrations: core.0003_referencesequence, appreciation.0006, feedback.0008, observations.0012
- unit tests (format, sanitization, monthly reset, 40-thread concurrency)

QA audit:
- isolated E2E hospital sandbox mirroring HH-N + 10 role users (create_e2e_isolated_env)
- feedback-modules-audit.spec.ts + audit helper (headed, run-to-completion)
- reports/feedback-modules-qa-report.md

Also bundles accumulated in-progress work across complaints, observations,
organizations, templates, and other modules.
2026-06-14 14:29:23 +03:00

41 lines
1.8 KiB
HTML

{% extends 'emails/base_email_template.html' %}
{% load i18n %}
{% block title %}{% trans "Welcome to PX360 - Al Hammadi Hospital" %}{% endblock %}
{% block preheader %}{% trans "You have been invited to join PX360. Complete your account setup." %}{% endblock %}
{% block content %}
<p style="margin: 0 0 15px;">
{% blocktrans with name=user.first_name|default:user.email %}Hello <strong>{{ name }}</strong>,{% endblocktrans %}
</p>
<p style="margin: 0 0 20px;">
{% trans "You have been invited to join PX360, our comprehensive Patient Experience management platform. To complete your account setup, please click the button below." %}
</p>
<p style="margin: 0 0 5px;"><strong>{% trans "During onboarding, you will:" %}</strong></p>
<p style="margin: 0 0 5px;">- {% trans "Learn about PX360 features and your role" %}</p>
<p style="margin: 0 0 5px;">- {% trans "Set up your profile and preferences" %}</p>
<p style="margin: 0 0 5px;">- {% trans "Complete required training" %}</p>
<p style="margin: 0 0 25px;">- {% trans "Activate your account" %}</p>
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%">
<tr>
<td align="center">
<a href="{{ activation_url }}"
style="display: inline-block; padding: 12px 32px; font-size: 16px; font-weight: 600; color: #ffffff; text-decoration: none; border-radius: 6px; background-color: #005696;">
{% trans "Complete Account Setup" %}
</a>
</td>
</tr>
</table>
<p style="margin: 25px 0 0; font-size: 14px; color: #666666;">
<strong>{% trans "Important:" %}</strong> {% trans "This invitation link will expire in 7 days." %}
</p>
<p style="margin: 15px 0 0; font-size: 13px; color: #999999;">
{% trans "Need help? Contact support@alhammadi.com or call +966 11 123 4567." %}
</p>
{% endblock %}