This repository has been archived on 2025-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
hymenobacterdotinfo/app/pods/components/sortable-table/template.hbs
Matthew Dillon 19359c341d Misc cleanup
2015-06-18 14:38:12 -08:00

13 lines
259 B
Handlebars

<thead>
<tr>
{{#each tableAttrs as |a|}}
{{sortable-table-header title=a.name sortProperty=a.attr action="sortBy"}}
{{/each}}
</tr>
</thead>
<tbody>
{{#each arrangedContent as |item|}}
{{component row data=item}}
{{/each}}
</tbody>