* NOTASK: PoC for loading data from Healthcare API * NOTASK: PoC for loading data from Healthcare API fix * Add sample dialog for loading test dicom-picker * Fix incorrect promise resolving * NOTASK: PoC for loading dicom store * Add web-components as git submodules. (Probably will be changed later) * Add rough dicomStore picker * Add dataset selector * NOTASK: QIDO metadata first draft * NOTASK: Not Implemented error for color images * NOTASK: clean-up * Dicom files uploader intermediate version * NOTASK: Accept header * NOTASK: docker configs * NOTASK: fix * NOTASK: howTo * Add draft of DICOM uploader * Add missing files * Fix error with missing clientId * Update submodule * NOTASK: HowTo * NOTASK: config for dev * NOTASK: new docker file * clean-up * Update GCP web-components * Add integration with async web components * Fix errors in nginx.conf * Structured reports views basic implementation * NOTASK: qido -> wado * NOTASK: config fix * NOTASK: dirty copy-paste implementation * Add "Change dicom store" button. Add an ability to clear date. Fix bug, when OAuth dosn't work if URL is not / * Fix studylist filtering * Fix dockerfile * NOTASK: meteor update * NOTASK: fix of package structure * NOTASK: merge fix * improvements Move check for now SR into SR modal Use simple button to open SR modal Remove button styling cleanup * copy SR data retrieval to wado * make search of SR simpler * Codestyle fix * NOTASK: palette color error message * Fix date filter. Fix server settings on first loading. Add SR and PS buttons * NOTASK: PS is now hidden by default * NOTASK: dirty solution * NOTASK: new wadoimage lib version * Fix PS and SR buttons * Make modal dialogs vertically centered * Update web components. Quick UI fixes * Add missing files to the previous commit * NOTASK: show-hide for PS * NOTASK: show-hide for PS * NOTASK: fix of min-max PixelValue bug * Add "sign out" functionality for Google OAuth. Update web-components. * intermediate commit * Add demo signin page * Beautifying demo sign in page * NOTASK: merge * NOTASK: clean-up * Use npm for getting healthcare-api-adapter instead of git submodule. * NOTASK: clean-up * meteor update * clean-up * clean-up * Clean up code * Update healthcare-api-adapter version. Add location to dicom store path. Fix buttons style. * Downgrade meteor and packages to master version. Use meteor-build-client-fixed2
96 lines
4.1 KiB
HTML
96 lines
4.1 KiB
HTML
<template name="studylistResult">
|
|
<div class="studyListToolbar clearfix">
|
|
<div class="header pull-left">
|
|
<span>Study List</span>
|
|
<span class="dicom-source">{{dicomSource}}</span>
|
|
</div>
|
|
<div class="studyCount pull-right">{{numberOfStudies}}</div>
|
|
<div class="pull-right">{{>studylistToolbar}}</div>
|
|
</div>
|
|
<div class="theadBackground">
|
|
</div>
|
|
<div id="studyListContainer">
|
|
<table id="tblStudyList" class="studylistResult table noselect">
|
|
<thead>
|
|
<tr>
|
|
<th class="patientName">
|
|
<div id="_patientName" class="sortingCell">
|
|
<span>Patient Name</span>
|
|
<i class="{{sortingColumnsIcons.patientName}}"> </i>
|
|
</div>
|
|
<input type="text"
|
|
class="form-control studylist-search"
|
|
id="patientName">
|
|
</th>
|
|
<th class="patientId">
|
|
<div id="_patientId" class="sortingCell">
|
|
<span>MRN</span>
|
|
<i class="{{sortingColumnsIcons.patientId}}"> </i>
|
|
</div>
|
|
<input type="text"
|
|
class="form-control studylist-search"
|
|
id="patientId">
|
|
</th>
|
|
<th class="accessionNumber">
|
|
<div id="_accessionNumber" class="sortingCell ">
|
|
<span>Accession #</span>
|
|
<i class="{{sortingColumnsIcons.accessionNumber}}"> </i>
|
|
</div>
|
|
<input type="text"
|
|
class="form-control studylist-search"
|
|
id="accessionNumber">
|
|
</th>
|
|
<th class="studyDate">
|
|
<div id="_studyDate" class="sortingCell">
|
|
<span>Study Date</span>
|
|
<i class="{{sortingColumnsIcons.studyDate}}"> </i>
|
|
</div>
|
|
<input type="text"
|
|
class="form-control studylist-search"
|
|
name="daterange"
|
|
id="studyDate">
|
|
</th>
|
|
<th class="modalities">
|
|
<div id="_modalities" class="sortingCell">
|
|
<span>Modality</span>
|
|
<i class="{{sortingColumnsIcons.modalities}}"> </i>
|
|
</div>
|
|
<input type="text"
|
|
class="form-control studylist-search"
|
|
id="modality">
|
|
</th>
|
|
<!-- <th class="studyDescription">
|
|
<div id="_studyDescription" class="sortingCell">
|
|
<span>Study Description</span>
|
|
<i class="{{sortingColumnsIcons.studyDescription}}"> </i>
|
|
</div>
|
|
<input type="text"
|
|
class="form-control studylist-search"
|
|
id="studyDescription">
|
|
</th> -->
|
|
</tr>
|
|
</thead>
|
|
<tbody id="studyListData">
|
|
{{#each study in studies}}
|
|
{{>studylistStudy (clone study this)}}
|
|
{{/each}}
|
|
</tbody>
|
|
</table>
|
|
|
|
<!-- Pagination -->
|
|
{{>paginationArea instance.paginationData}}
|
|
|
|
{{#if session "showLoadingText"}}
|
|
{{>loadingText}}
|
|
{{else}}
|
|
{{#if session "serverError"}}
|
|
<div class="notFound">There was an error fetching studies</div>
|
|
{{else}}
|
|
{{#unless numberOfStudies}}
|
|
<div class="notFound">No matching results</div>
|
|
{{/unless}}
|
|
{{/if}}
|
|
{{/if}}
|
|
</div>
|
|
</template>
|