68 lines
2.9 KiB
HTML
68 lines
2.9 KiB
HTML
<template name="viewportOverlay">
|
|
<div class="imageViewerViewportOverlay noselect">
|
|
{{ #unless tagDisplaySpecified }}
|
|
<div class="topleft dicomTag">
|
|
<div>{{formatPN patientName}}</div>
|
|
<div>{{patientId}}</div>
|
|
<div class='priorIndicator'>{{prior}}</div>
|
|
</div>
|
|
<div class="topright dicomTag">
|
|
<div>{{studyDescription}}</div>
|
|
<div>{{formatDA studyDate}} {{formatTM studyTime}}</div>
|
|
</div>
|
|
<div class="bottomright dicomTag">
|
|
<div>{{#if zoom}}Zoom: {{formatNumberPrecision zoom 2}}%{{/if}}</div>
|
|
<div>{{compression}}</div>
|
|
<div>{{wwwc}}</div>
|
|
</div>
|
|
<div class="bottomleft dicomTag">
|
|
<div>{{#if seriesNumber}}Ser: {{seriesNumber}}{{/if}}</div>
|
|
<div>{{#if numImages}}Img: {{imageNumber}} ({{imageIndex}}/{{numImages}}){{/if}}</div>
|
|
<div>{{#if frameRate}}{{frameRate}} FPS{{/if}}</div>
|
|
<div>{{imageDimensions}}</div>
|
|
<div>{{seriesDescription}}</div>
|
|
</div>
|
|
{{ /unless }}
|
|
|
|
{{ #if tagDisplayRightOnly }}
|
|
<div class="topright dicomTag">
|
|
<div>{{formatPN patientName}}</div>
|
|
<div>{{patientId}}</div>
|
|
<div class='priorIndicator'>{{prior}}</div>
|
|
<div>{{studyDescription}}</div>
|
|
<div>{{formatDA studyDate}} {{formatTM studyTime}}</div>
|
|
</div>
|
|
<div class="bottomright dicomTag">
|
|
<div>{{#if seriesNumber}}Ser: {{seriesNumber}}{{/if}}</div>
|
|
<div>{{#if numImages}}Img: {{imageNumber}} ({{imageIndex}}/{{numImages}}){{/if}}</div>
|
|
<div>{{#if frameRate}}{{frameRate}} FPS{{/if}}</div>
|
|
<div>{{imageDimensions}}</div>
|
|
<div>{{seriesDescription}}</div>
|
|
<div>{{#if zoom}}Zoom: {{formatNumberPrecision zoom 2}}%{{/if}}</div>
|
|
<div>{{compression}}</div>
|
|
<div>{{wwwc}}</div>
|
|
</div>
|
|
{{ /if }}
|
|
|
|
{{ #if tagDisplayLeftOnly }}
|
|
<div class="topleft dicomTag">
|
|
<div>{{formatPN patientName}}</div>
|
|
<div>{{patientId}}</div>
|
|
<div class='priorIndicator'>{{prior}}</div>
|
|
<div>{{studyDescription}}</div>
|
|
<div>{{formatDA studyDate}} {{formatTM studyTime}}</div>
|
|
</div>
|
|
<div class="bottomleft dicomTag">
|
|
<div>{{#if seriesNumber}}Ser: {{seriesNumber}}{{/if}}</div>
|
|
<div>{{#if numImages}}Img: {{imageNumber}} ({{imageIndex}}/{{numImages}}){{/if}}</div>
|
|
<div>{{#if frameRate}}{{frameRate}} FPS{{/if}}</div>
|
|
<div>{{imageDimensions}}</div>
|
|
<div>{{seriesDescription}}</div>
|
|
<div>{{#if zoom}}Zoom: {{formatNumberPrecision zoom 2}}%{{/if}}</div>
|
|
<div>{{compression}}</div>
|
|
<div>{{wwwc}}</div>
|
|
</div>
|
|
{{ /if }}
|
|
{{>imageControls}}
|
|
</div>
|
|
</template> |