|
@@ -1,6 +1,9 @@
|
|
|
<?php if ($point->last_child_review_point_id && $point->last_child_review_data): ?>
|
|
|
<?php $parsedReview = json_decode($point->last_child_review_data); ?>
|
|
|
<span class="screen-only">
|
|
|
+ <?php if(@$childHeading): ?>
|
|
|
+ <span class="on-hover-opaque font-weight-bold mr-2 c-pointer upsert-rp-trigger font-underline"><?= $childHeading ?></span>
|
|
|
+ <?php endif; ?>
|
|
|
<?php if ($point->last_child_review_point_scoped_note_id === $patient->core_note_id): ?>
|
|
|
<span class="text-sm text-secondary">(updated on the patient's chart)</span>
|
|
|
<?php else: ?>
|
|
@@ -13,6 +16,8 @@
|
|
|
<?= relative_friendly_date($point->last_child_review_effective_date) ?>
|
|
|
<?php if($point->last_child_review_creator): ?>
|
|
|
by <?= $point->last_child_review_creator ?>
|
|
|
+ <?php elseif($point->last_child_review_creator_pro_first_name || $point->last_child_review_creator_pro_last_name): ?>
|
|
|
+ by <?= implode(' ', [$point->last_child_review_creator_pro_first_name, $point->last_child_review_creator_pro_last_name]); ?>
|
|
|
<?php endif; ?>
|
|
|
</span>
|
|
|
<div menu right class="bg-white border">
|