|
@@ -21,13 +21,11 @@ list($careTeamMembers, $counts) = Point::getPointsOfCategoryExtended($patient, '
|
|
|
<th class="border-bottom-0 text-secondary text-center width-30px">Rel.</th>
|
|
|
@endif
|
|
|
<th class="border-bottom-0 text-secondary">Name/Details</th>
|
|
|
- <th class="border-bottom-0 text-secondary">Edit</th>
|
|
|
- <th class="border-bottom-0 text-secondary w-25">Subjective</th>
|
|
|
- <th class="border-bottom-0 text-secondary w-25">Plan</th>
|
|
|
+ <th class="border-bottom-0 text-secondary width-50px">Edit</th>
|
|
|
+ <th class="border-bottom-0 text-secondary w-30">Subjective</th>
|
|
|
+ <th class="border-bottom-0 text-secondary w-30">Plan</th>
|
|
|
<th class="border-bottom-0 text-secondary">Contact</th>
|
|
|
- <th class="border-bottom-0 text-secondary">Active?</th>
|
|
|
- <th class="border-bottom-0 text-secondary">Started</th>
|
|
|
- <th class="border-bottom-0 text-secondary">Ended</th>
|
|
|
+ <th class="border-bottom-0 text-secondary width-30px"></th>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
<?php $prevRowState = -1; ?>
|
|
@@ -210,23 +208,20 @@ list($careTeamMembers, $counts) = Point::getPointsOfCategoryExtended($patient, '
|
|
|
<?= '<span class="text-secondary">Fax: </span>' . (!!@($careTeamMember->data->fax) ? @($careTeamMember->data->fax) : '-') ?>
|
|
|
</td>
|
|
|
<td>
|
|
|
- @if($careTeamMember->is_removed)
|
|
|
- NO
|
|
|
- @else
|
|
|
- <b>YES</b>
|
|
|
- @endif
|
|
|
- </td>
|
|
|
- <td>
|
|
|
- <?= !!@($careTeamMember->data->start_date) ? friendly_date($careTeamMember->data->start_date) : '-' ?>
|
|
|
- @if(!!@($careTeamMember->data->prescriber))
|
|
|
- <div class="mt-1 text-sm text-secondary">By: <?= !!@($careTeamMember->data->prescriber) ? @($careTeamMember->data->prescriber) : '-' ?></div>
|
|
|
- @endif
|
|
|
- </td>
|
|
|
- <td>
|
|
|
- <?= !!@($careTeamMember->removal_effective_date) ? friendly_date($careTeamMember->removal_effective_date) : '-' ?>
|
|
|
- @if(!!@($careTeamMember->removal_reason_memo))
|
|
|
- <div class="mt-1 text-sm text-secondary">By: <?= !!@($careTeamMember->removal_reason_memo) ? @($careTeamMember->removal_reason_memo) : '-' ?></div>
|
|
|
- @endif
|
|
|
+ <div class="position-relative c-pointer stag-tooltip">
|
|
|
+ <i class="fa fa-info-circle"></i>
|
|
|
+ <div class="position-absolute bg-white border rounded p-2 stag-tooltip-content">
|
|
|
+ <div class="text-nowrap small text-left">Started <b><?= !!@($careTeamMember->data->start_date) ? friendly_date($careTeamMember->data->start_date) : '-' ?></b></div>
|
|
|
+ @if(!!@($careTeamMember->data->prescriber))
|
|
|
+ <div class="text-sm text-left text-secondary">By: <?= !!@($careTeamMember->data->prescriber) ? @($careTeamMember->data->prescriber) : '-' ?></div>
|
|
|
+ @endif
|
|
|
+ <hr class="my-1">
|
|
|
+ <div class="text-nowrap small text-left text-left">Ended <b><?= !!@($careTeamMember->removal_effective_date) ? friendly_date($careTeamMember->removal_effective_date) : '-' ?></b></div>
|
|
|
+ @if(!!@($careTeamMember->data->prescriber))
|
|
|
+ <div class="text-sm text-secondary">By/Memo: <?= !!@($careTeamMember->removal_reason_memo) ? @($careTeamMember->removal_reason_memo) : '-' ?></div>
|
|
|
+ @endif
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<?php endforeach; ?>
|