Roughing in measurements again
This commit is contained in:
parent
6f50a381fc
commit
878e8d1b60
12 changed files with 127 additions and 20 deletions
5
app/pods/components/measurement-index-row/component.js
Normal file
5
app/pods/components/measurement-index-row/component.js
Normal file
|
@ -0,0 +1,5 @@
|
|||
import Ember from 'ember';
|
||||
|
||||
export default Ember.Component.extend({
|
||||
tagName: 'tr',
|
||||
});
|
11
app/pods/components/measurement-index-row/template.hbs
Normal file
11
app/pods/components/measurement-index-row/template.hbs
Normal file
|
@ -0,0 +1,11 @@
|
|||
<td>
|
||||
{{#link-to 'strains.show' data.strain.id}}
|
||||
{{scientific-name strain=data.strain}}
|
||||
{{/link-to}}
|
||||
</td>
|
||||
<td>
|
||||
{{data.characteristic.characteristicName}}
|
||||
</td>
|
||||
<td>
|
||||
{{{data.computedValue}}}
|
||||
</td>
|
Reference in a new issue