|
@@ -40,27 +40,27 @@ $plural = 'Care team members';
|
|
|
</div>
|
|
|
</td>
|
|
|
<td class="px-2 width-300px">
|
|
|
- <div>
|
|
|
+ <div class="pl-3">
|
|
|
<?php if(!!$plan): ?>
|
|
|
- <div class="pl-3 mt-1 d-flex align-items-baseline">
|
|
|
+ <div class="mt-1 d-flex align-items-baseline">
|
|
|
<span>{!! $plan->data->value !!}</span>
|
|
|
</div>
|
|
|
<?php elseif($rel): ?>
|
|
|
<div class="relevant-without-plan text-warning-mellow text-sm mt-1" data-target-segment="<?= $segment->segmentTemplate->internal_name ?>"><i class="fa fa-exclamation-triangle mr-1"></i>Plan missing</div>
|
|
|
<?php endif; ?>
|
|
|
</div>
|
|
|
- <div class="d-flex align-items-baseline">
|
|
|
+ <div class="pl-3 d-flex align-items-baseline">
|
|
|
<?php if ($point->is_removed): ?>
|
|
|
@if($point->removal_reason_category === 'DURING_VISIT')
|
|
|
- <span class="ml-2 text-sm text-secondary">Removed during visit</span>
|
|
|
+ <span class="mt-1 text-sm text-secondary">Removed during visit</span>
|
|
|
@elseif($point->removal_reason_category === 'ON_INTAKE')
|
|
|
- <span class="ml-2 text-sm text-secondary">Removed on intake</span>
|
|
|
+ <span class="mt-1 text-sm text-secondary">Removed on intake</span>
|
|
|
@endif
|
|
|
<?php elseif ($point->added_in_note_id === $note->id): ?>
|
|
|
<?php if ($point->addition_reason_category === 'DURING_VISIT'): ?>
|
|
|
- <span class="ml-2 text-sm text-success">* Added during visit</span>
|
|
|
+ <span class="mt-1 text-sm text-success">* Added during visit</span>
|
|
|
<?php else: ?>
|
|
|
- <span class="ml-2 text-sm text-info">* Added on intake</span>
|
|
|
+ <span class="mt-1 text-sm text-info">* Added on intake</span>
|
|
|
<?php endif;?>
|
|
|
<?php endif; ?>
|
|
|
</div>
|