Skip to content

Commit b572415

Browse files
committed
Bolds DR category labels.
1 parent eb4d38e commit b572415

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/lib/resource-templates/AdvanceDirective.svelte

+9-9
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ Text:
1414
<br />
1515
-->
1616

17-
Category:
17+
<b>Category:</b>
1818
{#if resource.category && resource.category[0] && resource.category[0].coding && resource.category[0].coding[0]}
1919
{resource.category[0].coding[0].display} (LOINC {resource.category[0].coding[0].code})
2020
{/if}
2121
<br />
22-
Type:
22+
<b>Type:</b>
2323
<!-- 42348-3 is for "Advance Directive"; per cthon, it's presence here is redundant w/ category above. -->
2424
{#if resource.type && resource.type.coding && resource.type.coding[0] && resource.type.coding[0].code != '42348-3'}
2525
{resource.type.coding[0].display} (LOINC {resource.type.coding[0].code})
@@ -28,32 +28,32 @@ Type:
2828
{resource.type.coding[1].display} (LOINC {resource.type.coding[1].code}).
2929
{/if}
3030
<br />
31-
Description:
31+
<b>Description:</b>
3232
{#if resource.description}
3333
{resource.description}
3434
{/if}
3535
<br />
36-
setId:
36+
<b>setId:</b>
3737
{#if resource.identifier && resource.identifier[0] && resource.identifier[0].system && resource.identifier[0].system == 'https://mydirectives.com/standards/terminology/namingSystem/setId'}
3838
{resource.identifier[0].value}
3939
{/if}
4040
<br />
41-
Version number:
41+
<b>Version number:</b>
4242
{#if resource.extension && resource.extension[0] && resource.extension[0].url && resource.extension[0].url == 'http://hl7.org/fhir/us/ccda/StructureDefinition/VersionNumber'}
4343
{resource.extension[0].valueInteger}
4444
{/if}
4545
<br />
46-
Date:
46+
<b>Date:</b>
4747
{#if resource.date}
4848
{resource.date}
4949
{/if}
5050
<br />
51-
Status:
51+
<b>Status:</b>
5252
{#if resource.status}
5353
{resource.status}
5454
{/if}
5555
<br />
56-
docStatus:
56+
<b>docStatus:</b>
5757
{#if resource.docStatus}
5858
{resource.docStatus}
5959
{/if}
@@ -65,7 +65,7 @@ docStatus:
6565
{#if resource.content}
6666
{#each resource.content as content}
6767
{#if content.attachment && content.attachment.data}
68-
PDF present: <a href={"data:application/pdf;base64," + content.attachment.data} target="_blank" rel="noopener noreferrer">View</a>
68+
<b>PDF present:</b> <a href={"data:application/pdf;base64," + content.attachment.data} target="_blank" rel="noopener noreferrer">View</a>
6969
{/if}
7070
{/each}
7171
{/if}

0 commit comments

Comments
 (0)