2015-12-07 17:15:14 +01:00
|
|
|
|
<template name="nonTargetLesionDialog">
|
2016-01-09 18:41:33 +01:00
|
|
|
|
<div id="nonTargetLesionLocationDialog" tabindex="0">
|
2015-12-07 17:15:14 +01:00
|
|
|
|
<div class="dialogHeader">
|
2015-12-09 14:24:40 +01:00
|
|
|
|
<h4>Select Lesion Location</h4>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="dialogContent">
|
|
|
|
|
|
<div class="lesionLocation">
|
|
|
|
|
|
<label>Lesion Location</label>
|
|
|
|
|
|
<select id="selectNonTargetLesionLocation">
|
|
|
|
|
|
<option value="-1"></option>
|
|
|
|
|
|
{{ #each lesionLocations}}
|
2016-01-09 15:56:59 +01:00
|
|
|
|
<option value={{_id}}>{{location}}</option>
|
2015-12-09 14:24:40 +01:00
|
|
|
|
{{ /each}}
|
|
|
|
|
|
</select>
|
2015-12-07 17:15:14 +01:00
|
|
|
|
</div>
|
2015-12-09 14:24:40 +01:00
|
|
|
|
<div class="locationResponse">
|
|
|
|
|
|
<label>Response</label>
|
|
|
|
|
|
<select id="selectNonTargetLesionLocationResponse">
|
2016-02-17 16:02:42 +01:00
|
|
|
|
<option value="-1" selected="true"></option>
|
2015-12-09 14:24:40 +01:00
|
|
|
|
{{ #each locationResponses}}
|
2015-12-19 04:24:00 +01:00
|
|
|
|
{{ #if code }}
|
2016-02-14 14:17:20 +01:00
|
|
|
|
<option value={{code}} selected={{selected}}>{{code}} - {{text}}</option>
|
2015-12-19 04:24:00 +01:00
|
|
|
|
{{ else }}
|
2016-02-14 14:17:20 +01:00
|
|
|
|
<option value={{text}} selected={{selected}}>{{text}}</option>
|
2015-12-19 04:24:00 +01:00
|
|
|
|
{{ /if }}
|
2015-12-09 14:24:40 +01:00
|
|
|
|
{{ /each}}
|
|
|
|
|
|
</select>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="locationOK">
|
|
|
|
|
|
<button class="btn btn-primary" id="nonTargetLesionOK">OK</button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
2016-01-09 18:41:33 +01:00
|
|
|
|
<div id="nonTargetLesionRelabelDialog" tabindex="0">
|
2015-12-09 14:24:40 +01:00
|
|
|
|
<div class="dialogHeader">
|
|
|
|
|
|
<h4>Select Lesion Location</h4>
|
2015-12-07 17:15:14 +01:00
|
|
|
|
</div>
|
|
|
|
|
|
<div class="dialogContent">
|
|
|
|
|
|
<div class="lesionLocation">
|
2015-12-09 14:24:40 +01:00
|
|
|
|
<label>Lesion Location</label>
|
|
|
|
|
|
<select id="selectNonTargetLesionLocation">
|
|
|
|
|
|
<option value="-1"></option>
|
|
|
|
|
|
{{ #each lesionLocations}}
|
2015-12-19 04:24:00 +01:00
|
|
|
|
<option value='{{_id}}' selected={{selected}}>{{location}}</option>
|
2015-12-09 14:24:40 +01:00
|
|
|
|
{{ /each}}
|
|
|
|
|
|
</select>
|
2015-12-07 17:15:14 +01:00
|
|
|
|
</div>
|
|
|
|
|
|
<div class="locationResponse">
|
2015-12-09 14:24:40 +01:00
|
|
|
|
<label>Response</label>
|
|
|
|
|
|
<select id="selectNonTargetLesionLocationResponse">
|
2016-02-17 16:02:42 +01:00
|
|
|
|
<option value="-1" selected="true"></option>
|
2015-12-09 14:24:40 +01:00
|
|
|
|
{{ #each locationResponses}}
|
2015-12-19 04:24:00 +01:00
|
|
|
|
{{ #if code }}
|
|
|
|
|
|
<option value={{code}} selected={{selected}}>{{code}} - {{text}}</option>
|
|
|
|
|
|
{{ else }}
|
2015-12-21 18:11:17 +01:00
|
|
|
|
<option value={{text}} selected={{selected}}>{{text}}</option>
|
2015-12-19 04:24:00 +01:00
|
|
|
|
{{ /if }}
|
2015-12-09 14:24:40 +01:00
|
|
|
|
{{ /each}}
|
|
|
|
|
|
</select>
|
2015-12-07 17:15:14 +01:00
|
|
|
|
</div>
|
|
|
|
|
|
<div class="locationOK">
|
2015-12-09 14:24:40 +01:00
|
|
|
|
<button class="btn btn-link" id="removeLesion">Remove</button>
|
2016-03-13 15:36:12 +01:00
|
|
|
|
<div class="btn-group">
|
|
|
|
|
|
<button type="button" class="btn btn-link dropdown-toggle"
|
|
|
|
|
|
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
|
|
|
|
Convert
|
|
|
|
|
|
</button>
|
|
|
|
|
|
<div class="dropdown-menu">
|
|
|
|
|
|
{{ #each conversionOptions }}
|
|
|
|
|
|
<a class="btn btn-link dropdown-item convertNonTarget" data-type="{{id}}">{{name}}</a>
|
|
|
|
|
|
{{ /each }}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2015-12-07 17:15:14 +01:00
|
|
|
|
<button class="btn btn-primary" id="nonTargetLesionOK">OK</button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|