|
@@ -22,11 +22,13 @@ $intakeOrVisit = 'PLAN';
|
|
|
<th class="border-bottom-0">Category</th>
|
|
|
<th class="border-bottom-0">Intervention</th>
|
|
|
<th class="border-bottom-0">Last Review</th>
|
|
|
- <th class="border-bottom-0">Review Today</th>
|
|
|
+ <th class="border-bottom-0">Last Plan</th>
|
|
|
+ <th class="border-bottom-0">Plan Today</th>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
<?php $previousCategory = null; ?>
|
|
|
<?php foreach($interventions as $intervention): ?>
|
|
|
+ <?php $point = $intervention; ?>
|
|
|
<tr>
|
|
|
<td>
|
|
|
<?php if($previousCategory === $intervention->data->category): ?>
|
|
@@ -46,7 +48,6 @@ $intakeOrVisit = 'PLAN';
|
|
|
<!-- common actions -->
|
|
|
<div class="ml-auto d-inline-flex align-items-baseline pr-2">
|
|
|
<?php
|
|
|
- $point = $intervention;
|
|
|
$label = 'Intervention';
|
|
|
include resource_path('views/app/patient/segment-templates/_common_actions/remove-undo.php');
|
|
|
?>
|
|
@@ -55,14 +56,17 @@ $intakeOrVisit = 'PLAN';
|
|
|
</td>
|
|
|
<td>
|
|
|
<?php
|
|
|
- $point = $intervention;
|
|
|
include resource_path('views/app/patient/segment-templates/_child_review/last-review.php');
|
|
|
?>
|
|
|
</td>
|
|
|
<td>
|
|
|
<?php
|
|
|
- $point = $intervention;
|
|
|
- include resource_path('views/app/patient/segment-templates/_child_review/edit-review.php');
|
|
|
+ include resource_path('views/app/patient/segment-templates/_child_plan/last-plan.php');
|
|
|
+ ?>
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ <?php
|
|
|
+ include resource_path('views/app/patient/segment-templates/_child_plan/edit-plan.php');
|
|
|
?>
|
|
|
</td>
|
|
|
</tr>
|