- Removed AssociatedStudies Collection - Measurement API is generated from configuration files - Data exchange methods are defined in configuration
38 lines
1.5 KiB
HTML
38 lines
1.5 KiB
HTML
<template name="measurementLocationDialog">
|
|
<div id="measurementLocationDialog" class="dialog-animated" tabindex="0">
|
|
<div class="dialogHeader">
|
|
<h4>Select Location</h4>
|
|
</div>
|
|
<div class="dialogContent">
|
|
<div class="measurementLocation">
|
|
<label>Location</label>
|
|
<select class="selectMeasurementLocation">
|
|
<option value="-1"></option>
|
|
{{ #each measurementLocations}}
|
|
<option value='{{_id}}'>{{location}}</option>
|
|
{{ /each}}
|
|
</select>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="measurementLocationRelabelDialog" class="dialog-animated" tabindex="0">
|
|
<div class="dialogHeader">
|
|
<h4>Change Location</h4>
|
|
</div>
|
|
<a></a>
|
|
<div class="dialogContent">
|
|
<div class="measurementLocation">
|
|
<label>Location</label>
|
|
<select class="selectMeasurementLocation">
|
|
<option value="-1"></option>
|
|
{{ #each measurementLocations}}
|
|
<option value='{{_id}}' selected={{selected}}>{{location}}</option>
|
|
{{ /each}}
|
|
</select>
|
|
</div>
|
|
<button id="removeLesion" class="btn btn-link">Remove</button>
|
|
<button id="convertToNonTarget" class="btn btn-link">Convert to Non-Target</button>
|
|
</div>
|
|
</div>
|
|
</template> |