- Retrieve AcquisitionDateTime via DICOMWeb (WIP for DIMSE) - Add a global template helper to sort arrays by an array element property or deep array element propery, and sort type
12 lines
399 B
HTML
12 lines
399 B
HTML
<template name="studyBrowser">
|
|
<div class="studyBrowser">
|
|
<div class="scrollableStudyThumbnails">
|
|
{{#each study in studies}}
|
|
{{#each thumbnail in (sort (studyThumbnails study) thumbnailSortBy thumbnailSortType)}}
|
|
{{>thumbnailEntry thumbnail=thumbnail}}
|
|
{{/each}}
|
|
{{/each}}
|
|
</div>
|
|
</div>
|
|
</template>
|