23 lines
No EOL
816 B
HTML
23 lines
No EOL
816 B
HTML
<template name="measLogEntry">
|
|
<h1>Measurement Log Entry</h1>
|
|
<label for="selectPart">Select Measurement</label>
|
|
<select name="selectPart" id="selectPart">
|
|
<option value="" disabled selected>...</option>
|
|
{{#each bodyPart}}
|
|
<option value="{{_id}}">{{measurementName}}</option>
|
|
{{/each}}
|
|
</select>
|
|
|
|
{{#if $eq measIdSelected true}}
|
|
<div class="group">
|
|
<div>
|
|
<label>{{measureToLog.measurementName}} ({{measureToLog.measurementUnits}})</label>
|
|
<input type="number" id="{{measureToLog.measurementName}}" />
|
|
</div>
|
|
</div>
|
|
<div class="grid">
|
|
<button class="primary savePartMeasure" id="savePartMeasure">Save</button>
|
|
</div>
|
|
{{/if}}
|
|
{{> snackbar}}
|
|
</template> |