- 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)
29 lines
937 B
HTML
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> |