65 lines
2.6 KiB
HTML
65 lines
2.6 KiB
HTML
<template name="toolbarSection">
|
|
<div class="toolbarSection noselect p-x-2">
|
|
<div class="clearfix">
|
|
<div class="pull-left m-t-1">
|
|
{{>roundedButtonGroup leftSidebarToggleButtonData}}
|
|
</div>
|
|
<div class="toolbarSectionTools pull-left m-t-1 rm-l-3">
|
|
{{#each toolbarButton in toolbarButtons}}
|
|
{{>toolbarSectionButton toolbarButton}}
|
|
{{/each}}
|
|
|
|
<div id="moreTools" class="toolbarSectionButton rp-x-1 rm-l-3">
|
|
<div class="svgContainer">
|
|
<svg>
|
|
<use xlink:href="/packages/lesiontracker/assets/icons.svg#icon-tools-more"></use>
|
|
</svg>
|
|
</div>
|
|
<div class="buttonLabel">
|
|
More <i class="fa fa-caret-down" aria-hidden="true"></i>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="toolbarSectionDrawerContainer">
|
|
<!-- TODO: [design] check which group of tools shall be shown -->
|
|
<div class="toolbarSectionDrawer">More tools coming soon</div>
|
|
</div>
|
|
</div>
|
|
|
|
{{#if splitView}}
|
|
{{>studySeriesQuickSwitch side="right" viewportIndex=1}}
|
|
{{>studySeriesQuickSwitch side="left" viewportIndex=0}}
|
|
{{else}}
|
|
{{>studySeriesQuickSwitch side="middle" viewportIndex=0}}
|
|
{{/if}}
|
|
|
|
<div class="toolbarSectionEntry pull-right rm-l-1 p-x-1">
|
|
{{> caseProgress }}
|
|
</div>
|
|
<div class="pull-right m-t-1 rm-x-1">
|
|
{{>roundedButtonGroup rightSidebarToggleButtonData}}
|
|
</div>
|
|
<div id="toggleHUD" class="toolbarSectionButton pull-right rp-x-1 m-t-1 rm-r-3">
|
|
<div class="svgContainer">
|
|
<svg>
|
|
<use xlink:href="/packages/lesiontracker/assets/icons.svg#icon-hud"></use>
|
|
</svg>
|
|
</div>
|
|
<div class="buttonLabel">
|
|
HUD
|
|
</div>
|
|
</div>
|
|
<div class="toolbarSectionButton pull-right rp-x-1 m-t-1 rm-r-1" data-toggle="modal" data-target="#optionsModal">
|
|
<div class="svgContainer">
|
|
<svg>
|
|
<use xlink:href="/packages/lesiontracker/assets/icons.svg#icon-trial-info"></use>
|
|
</svg>
|
|
</div>
|
|
<div class="buttonLabel">
|
|
Trial
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|