Rough in characteristics
This commit is contained in:
parent
c5cb0ec145
commit
d587f14af4
13 changed files with 187 additions and 0 deletions
app/templates/characteristics
19
app/templates/characteristics/index.hbs
Normal file
19
app/templates/characteristics/index.hbs
Normal file
|
@ -0,0 +1,19 @@
|
|||
<h2>Hymenobacter Characteristics</h2>
|
||||
<h3>Total characteristics: {{controller.length}}</h3>
|
||||
|
||||
<table class="flakes-table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th {{action "setSortBy" "characteristicName"}}>Name</th>
|
||||
<th {{action "setSortBy" "characteristicType"}}>Type</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{{#each characteristic in controller}}
|
||||
<tr>
|
||||
<td>{{characteristic.characteristicName}}</td>
|
||||
<td>{{characteristic.characteristicType}}</td>
|
||||
</tr>
|
||||
{{/each}}
|
||||
</tbody>
|
||||
</table>
|
Reference in a new issue