80 lines
3.2 KiB
HTML
80 lines
3.2 KiB
HTML
{% extends 'emails/base_email_template.html' %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}{% trans "New Public Inquiry" %}{% endblock %}
|
|
|
|
{% block preheader %}{% trans "A new public inquiry has been submitted via the website." %}{% endblock %}
|
|
|
|
{% block hero_title %}{% trans "New Public Inquiry" %}{% endblock %}
|
|
|
|
{% block hero_subtitle %}{% trans "A new inquiry has been submitted through the public contact form." %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<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: #64748b; line-height: 1.6;">
|
|
{% trans "A new public inquiry has been received. Details are below." %}
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%" style="margin: 20px 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;">
|
|
{% trans "Inquiry Details" %}
|
|
</h3>
|
|
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%">
|
|
<tr>
|
|
<td width="120" style="padding: 8px 0; font-size: 14px; color: #64748b; font-weight: 500;">
|
|
{% trans "Reference:" %}
|
|
</td>
|
|
<td style="padding: 8px 0; font-size: 14px; color: #1e293b; font-weight: 600;">
|
|
{{ reference_number }}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="padding: 8px 0; font-size: 14px; color: #64748b; font-weight: 500;">
|
|
{% trans "From:" %}
|
|
</td>
|
|
<td style="padding: 8px 0; font-size: 14px; color: #1e293b; font-weight: 600;">
|
|
{{ name }}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="padding: 8px 0; font-size: 14px; color: #64748b; font-weight: 500;">
|
|
{% trans "Subject:" %}
|
|
</td>
|
|
<td style="padding: 8px 0; font-size: 14px; color: #1e293b; font-weight: 600;">
|
|
{{ subject }}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td valign="top" style="padding: 8px 0; font-size: 14px; color: #64748b; font-weight: 500;">
|
|
{% trans "Message:" %}
|
|
</td>
|
|
<td style="padding: 8px 0; font-size: 14px; color: #1e293b; line-height: 1.6;">
|
|
{{ message }}
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
{% endblock %}
|
|
|
|
{% block cta_section %}
|
|
{% endblock %}
|
|
|
|
{% block info_title %}{% trans "Action Required" %}{% endblock %}
|
|
{% block info_content %}
|
|
{% trans "Please review this inquiry and respond to the sender at your earliest convenience." %}
|
|
{% endblock %}
|
|
|
|
{% block footer_address %}
|
|
PX360 Patient Experience Management System<br>
|
|
Al Hammadi Hospital
|
|
{% endblock %}
|