|
@@ -23,7 +23,6 @@ $goals = Point::getIntakePointsOfCategory($patient, 'GOAL', $note);
|
|
|
<th class="border-bottom-0">Goal</th>
|
|
|
<th class="border-bottom-0">Most Recent Review</th>
|
|
|
<th class="border-bottom-0">Most Recent Plan</th>
|
|
|
- <th class="border-bottom-0">Review Today</th>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
<?php $previousCategory = null; ?>
|
|
@@ -167,14 +166,19 @@ $goals = Point::getIntakePointsOfCategory($patient, 'GOAL', $note);
|
|
|
include resource_path('views/app/patient/segment-templates/_child_review/last-review.php');
|
|
|
?>
|
|
|
</div>
|
|
|
- <a class="px-2 view-review-log"
|
|
|
- native target="_blank"
|
|
|
- open-in-stag-popup
|
|
|
- popup-style="stag-popup-md"
|
|
|
- title="Review log<?= !!@($goal->data->name) ? ' for ' . @($goal->data->name) : '' ?>"
|
|
|
- href="/point/review-log/<?= $goal->uid ?>?popupmode=1">
|
|
|
- <i class="fa fa-history"></i>
|
|
|
- </a>
|
|
|
+ <div class="d-inline-flex flex-nowrap">
|
|
|
+ <a class="px-2 view-review-log"
|
|
|
+ native target="_blank"
|
|
|
+ open-in-stag-popup
|
|
|
+ popup-style="stag-popup-md"
|
|
|
+ title="Review log<?= !!@($goal->data->name) ? ' for ' . @($goal->data->name) : '' ?>"
|
|
|
+ href="/point/review-log/<?= $goal->uid ?>?popupmode=1">
|
|
|
+ <i class="fa fa-history"></i>
|
|
|
+ </a>
|
|
|
+ <?php
|
|
|
+ include resource_path('views/app/patient/segment-templates/_child_review/edit-review.php');
|
|
|
+ ?>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</td>
|
|
|
<td>
|
|
@@ -194,11 +198,6 @@ $goals = Point::getIntakePointsOfCategory($patient, 'GOAL', $note);
|
|
|
</a>
|
|
|
</div>
|
|
|
</td>
|
|
|
- <td>
|
|
|
- <?php
|
|
|
- include resource_path('views/app/patient/segment-templates/_child_review/edit-review.php');
|
|
|
- ?>
|
|
|
- </td>
|
|
|
</tr>
|
|
|
<?php $previousCategory = $goal->data->category; ?>
|
|
|
<?php endif; ?>
|