Roughing in measurements

This commit is contained in:
Matthew Dillon 2015-03-18 16:20:22 -08:00
parent ced3f7d2d2
commit 4f96f4dc07
13 changed files with 109 additions and 2 deletions

View file

@ -0,0 +1 @@
{{outlet}}

View file

@ -0,0 +1,28 @@
<table class="flakes-table">
<thead>
<tr>
<th>Characteristic</th>
<th>Text Meas. Type</th>
<th>Text Value</th>
<th>Num. Value</th>
<th>Confidence Int.</th>
<th>Unit</th>
<th>Notes</th>
<th>Test Method</th>
</tr>
</thead>
<tbody>
{{#each measurement in model}}
<tr>
<td>{{measurement.characteristic}}</td>
<td>{{measurement.textMeasurementType}}</td>
<td>{{measurement.txtValue}}</td>
<td>{{measurement.numValue}}</td>
<td>{{measurement.confidenceInterval}}</td>
<td>{{measurement.unitType}}</td>
<td>{{measurement.notes}}</td>
<td>{{measurement.testMethod}}</td>
</tr>
{{/each}}
</tbody>
</table>

View file

@ -11,7 +11,7 @@
<tbody>
{{#each strain in model}}
<tr>
<td>{{link-to strain.strainName 'strains.show' strain}}</td>
<td>{{link-to strain.strainName 'measurements' strain}}</td>
<td></td>
</tr>
{{/each}}

View file

@ -38,3 +38,6 @@
</fieldset>
</div>
</div>
<div class="measurements-container">
{{outlet}}
</div>