Include the status to the appointment notification

This commit is contained in:
Alex Tselegidis 2024-04-08 15:57:43 +02:00
parent 4570d0859e
commit 67a64e4eaf
2 changed files with 22 additions and 0 deletions

View File

@ -81,6 +81,17 @@
</td>
</tr>
<?php if (!empty($appointment['status'])): ?>
<tr>
<td class="label" style="padding: 3px;font-weight: bold;">
<?= lang('status') ?>
</td>
<td style="padding: 3px;">
<?= e($appointment['status']) ?>
</td>
</tr>
<?php endif; ?>
<tr>
<td class="label" style="padding: 3px;font-weight: bold;">
<?= lang('description') ?>

View File

@ -85,6 +85,17 @@
</td>
</tr>
<?php if (!empty($appointment['status'])): ?>
<tr>
<td class="label" style="padding: 3px;font-weight: bold;">
<?= lang('status') ?>
</td>
<td style="padding: 3px;">
<?= e($appointment['status']) ?>
</td>
</tr>
<?php endif; ?>
<tr>
<td class="label" style="padding: 3px;font-weight: bold;">
<?= lang('description') ?>