17 lines
500 B
HTML
17 lines
500 B
HTML
<template name="viewer">
|
|
{{#if and Template.subscriptionsReady dataSourcesReady}}
|
|
<div class="viewerDialogs">
|
|
{{>confirmDeleteDialog}}
|
|
{{>measurementLocationDialog (clone this)}}
|
|
{{>measurementTableHUD (clone this)}}
|
|
{{>cineDialog}}
|
|
</div>
|
|
<div id="viewer">
|
|
{{>toolbarSection (clone this)}}
|
|
{{>viewerSection (clone this)}}
|
|
</div>
|
|
{{else}}
|
|
{{>loadingText}}
|
|
{{/if}}
|
|
</template>
|