mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-25 09:23:08 +03:00
Include the status to the appointment notification
This commit is contained in:
parent
f2cdfb871f
commit
5b2ce2e000
2 changed files with 22 additions and 0 deletions
|
@ -81,6 +81,17 @@
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</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>
|
<tr>
|
||||||
<td class="label" style="padding: 3px;font-weight: bold;">
|
<td class="label" style="padding: 3px;font-weight: bold;">
|
||||||
<?= lang('description') ?>
|
<?= lang('description') ?>
|
||||||
|
|
|
@ -85,6 +85,17 @@
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</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>
|
<tr>
|
||||||
<td class="label" style="padding: 3px;font-weight: bold;">
|
<td class="label" style="padding: 3px;font-weight: bold;">
|
||||||
<?= lang('description') ?>
|
<?= lang('description') ?>
|
||||||
|
|
Loading…
Reference in a new issue