2015-12-19 04:24:00 +01:00
|
|
|
|
<template name="nonTargetResponseDialog">
|
2016-10-25 14:19:57 +02:00
|
|
|
|
<div id="nonTargetResponseDialog" class="dialog-animated" tabindex="0">
|
2015-12-19 04:24:00 +01:00
|
|
|
|
<div class="dialogHeader">
|
|
|
|
|
|
<h5>Select Response</h5>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="dialogContent">
|
|
|
|
|
|
<div class="locationResponse">
|
|
|
|
|
|
<label>Response</label>
|
|
|
|
|
|
<select id="selectNonTargetLesionLocationResponse">
|
|
|
|
|
|
<option value="-1"></option>
|
|
|
|
|
|
{{ #each locationResponses}}
|
|
|
|
|
|
{{ #if code }}
|
|
|
|
|
|
<option value={{code}} selected={{selected}}>{{code}} - {{text}}</option>
|
|
|
|
|
|
{{ else }}
|
|
|
|
|
|
<option value={{text}} selected={{selected}}>{{text}}</option>
|
|
|
|
|
|
{{ /if }}
|
|
|
|
|
|
{{ /each}}
|
|
|
|
|
|
</select>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="locationOK">
|
|
|
|
|
|
<button class="btn btn-link" id="removeLesion">Remove</button>
|
|
|
|
|
|
<button class="btn btn-primary" id="nonTargetLesionOK">OK</button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|