|
@@ -51,9 +51,11 @@ if(!$contentData['unknown'] && !!$contentData['count']) {
|
|
|
<span class="ml-1 text-secondary">(<?= $contentData['items'][$i]['status'] ?>)</span>
|
|
|
<?php endif; ?>
|
|
|
</div>
|
|
|
- <div class="ml-3">
|
|
|
+ <div class="d-flex ml-3">
|
|
|
<?php foreach ($labels as $k => $v): ?>
|
|
|
- <?= isset($contentData['items'][$i][$k]) ? '<div>' . $v . ': <b>' . $contentData['items'][$i][$k] . '</b></div>' : '' ?>
|
|
|
+ <?php if(isset($contentData['items'][$i][$k])): ?>
|
|
|
+ <div class="mr-3"><b class="text-secondary"><?= $v ?></b> <?= $contentData['items'][$i][$k] ?></div>
|
|
|
+ <?php endif; ?>
|
|
|
<?php endforeach; ?>
|
|
|
</div>
|
|
|
<?php if(isset($contentData['items'][$i]['comments']) && !empty($contentData['items'][$i]['comments'])): ?>
|
|
@@ -67,7 +69,7 @@ if(!$contentData['unknown'] && !!$contentData['count']) {
|
|
|
}
|
|
|
else {
|
|
|
?>
|
|
|
-<div class="text-secondary">Family History is unknown/unavailable</div>
|
|
|
+<div class="text-secondary">-</div>
|
|
|
<?php
|
|
|
}
|
|
|
?>
|