ohif-viewer/Packages/ohif-viewerbase/client/components/viewer/confirmDeleteDialog/confirmDeleteDialog.html
Erik Ziegler ab4d4c9008 Work on refactoring measurements out of Lesion Tracker package
- Removed AssociatedStudies Collection
- Measurement API is generated from configuration files
- Data exchange methods are defined in configuration
2016-11-15 08:21:46 +01:00

17 lines
603 B
HTML

<template name="confirmDeleteDialog">
<div id="confirmDeleteDialog" class="dialog-animated" tabindex="0">
{{#if title}}
<h5>{{title}}</h5>
{{else}}
<h5>Remove data from Timepoint?</h5>
{{/if}}
{{#if text}}
<p>{{text}}</p>
{{else}}
<p>Are you sure you would like to remove the measurement data at this timepoint?</p>
{{/if}}
<button id="cancel" class="btn btn-link" tabindex="1">Cancel</button>
<button id="confirm" class="btn btn-primary" tabindex="0">OK</button>
</div>
</template>