2015-12-19 04:24:00 +01:00
|
|
|
<template name="confirmDeleteDialog">
|
2016-01-09 18:41:33 +01:00
|
|
|
<div id="confirmDeleteDialog" tabindex="0">
|
2016-01-10 15:40:51 +01:00
|
|
|
{{ #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}}
|
2015-12-21 15:29:19 +01:00
|
|
|
<button id="cancel" class="btn btn-link" tabindex="1">Cancel</button>
|
|
|
|
|
<button id="confirm" class="btn btn-primary" tabindex="0">OK</button>
|
2015-12-19 04:24:00 +01:00
|
|
|
</div>
|
|
|
|
|
</template>
|