Rough in measurements.

This commit is contained in:
Matthew Dillon 2015-01-26 12:11:27 -09:00
parent 1a59456ae9
commit db22b89e6f
6 changed files with 80 additions and 0 deletions

View file

@ -10,6 +10,9 @@
{{#link-to 'strains' tagName='li' href=false}}
{{#link-to 'strains'}}Strains{{/link-to}}
{{/link-to}}
{{#link-to 'measurements' tagName='li' href=false}}
{{#link-to 'measurements'}}Measurements{{/link-to}}
{{/link-to}}
{{#link-to 'about' tagName='li' href=false}}
{{#link-to 'about'}}About{{/link-to}}
{{/link-to}}

View file

@ -0,0 +1,53 @@
<div class="grid-1">
{{#each}}
<div class="span-1">
<fieldset class="read-only-information">
<legend>{{id}}</legend>
<dl>
<dt>Strain</dt>
<dd>{{strain.strainName}}</dd>
</dl>
<dl>
<dt>Characteristic</dt>
<dd>{{characteristicId}}</dd>
</dl>
<dl>
<dt>Text Measurement Type</dt>
<dd>{{textMeasurementTypeId}}</dd>
</dl>
<dl>
<dt>Text Value</dt>
<dd>{{txtValue}}</dd>
</dl>
<dl>
<dt>Numerical Value</dt>
<dd>{{numValue}}</dd>
</dl>
<dl>
<dt>Confidence Interval</dt>
<dd>{{confidenceInterval}}</dd>
</dl>
<dl>
<dt>Unit Type</dt>
<dd>{{unitTypeId}}</dd>
</dl>
<dl>
<dt>Notes</dt>
<dd>{{notes}}</dd>
</dl>
<dl>
<dt>Test Method</dt>
<dd>{{testMethodId}}</dd>
</dl>
<dl>
<dt>Created</dt>
<dd>{{createdAt}}</dd>
</dl>
<dl>
<dt>Updated</dt>
<dd>{{updatedAt}}</dd>
</dl>
</fieldset>
</div>
{{/each}}
</div>