ohif-viewer/Packages/worklist/client/components/worklist.html
Evren Ozkan 5a680261c7 - Do not attempt to get studies metadata if ViewerData already has studies property and use it to view studies in tab (for cases when a tab is opened with metadata externally)
- Add showStudyListTab helper whether to show StudyListTab in worklist template - it is shown by default (it is not shown only if "data.showStudyListTab" is set to false when rendering worklist template)
2016-06-16 18:36:38 -04:00

29 lines
937 B
HTML

<template name="worklist">
<ul class="nav noselect" role="tablist" id="tablist">
{{#if showStudyListTab }}
<li role="presentation" class="tabTitle active">
<a data-target="#worklistTab" role="tab" data-toggle="tab">Study List</a>
</li>
{{/if}}
{{#each worklistTabs }}
{{>tabTitle }}
{{/each }}
</ul>
<div id="worklistTabs" class="tab-content">
{{#if showStudyListTab }}
<div role="tabpanel" class="tab-pane active" id="worklistTab">
<div class="worklistContainer">
{{> worklistResult }}
</div>
</div>
{{/if}}
{{#each worklistTabs }}
{{>tabContent }}
{{/each }}
</div>
{{#each additionalTemplates}}
{{> UI.dynamic template=this}}
{{/each}}
{{>studyContextMenu }}
{{>progressDialog}}
</template>