mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 10:02:33 +03:00
Include the status to the appointment notification
This commit is contained in:
parent
4570d0859e
commit
67a64e4eaf
2 changed files with 22 additions and 0 deletions
|
@ -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') ?>
|
||||
|
|
|
@ -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') ?>
|
||||
|
|
Loading…
Reference in a new issue