All checks were successful
Build and Push Docker Image / build (push) Successful in 4m14s
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.
20 lines
938 B
HTML
20 lines
938 B
HTML
{% extends "template.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}{% trans "Response Submitted" %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="min-h-screen bg-gradient-to-br from-slate-50 via-blue-50 to-indigo-50 py-12 px-4">
|
|
<div class="max-w-2xl mx-auto">
|
|
<div class="bg-white rounded-3xl shadow-2xl p-8 md:p-10 text-center">
|
|
<div class="w-16 h-16 bg-emerald-100 rounded-full flex items-center justify-center mx-auto mb-4">
|
|
<i data-lucide="check-circle" class="w-8 h-8 text-emerald-600"></i>
|
|
</div>
|
|
<h1 class="text-2xl font-bold text-navy mb-2">{% trans "Response Submitted" %}</h1>
|
|
<p class="text-slate-500 mb-6">{% trans "Thank you for your response to observation" %} {{ observation.tracking_code }}.</p>
|
|
<p class="text-sm text-slate-400">{% trans "The PX team will review your response." %}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|