2017-04-26 22:32:37 -07:00
|
|
|
{{#dataset-table
|
|
|
|
fields=entities as |table|}}
|
|
|
|
{{#table.body as |body|}}
|
|
|
|
{{#each
|
|
|
|
table.data as |entity|}}
|
|
|
|
{{#body.row as |row|}}
|
|
|
|
{{#row.cell}}
|
2017-04-26 22:49:36 -07:00
|
|
|
{{#link-to entityRoute entity.id}}
|
2017-04-26 22:32:37 -07:00
|
|
|
{{ entity.name }}
|
|
|
|
{{/link-to}}
|
|
|
|
|
|
|
|
{{dataset-owner-list owners=owners datasetName=model.name}}
|
|
|
|
|
|
|
|
{{#if entity.formatedModified}}
|
|
|
|
<span>last modified:</span>
|
|
|
|
{{ entity.formatedModified }}
|
|
|
|
{{/if}}
|
|
|
|
{{/row.cell}}
|
|
|
|
{{#row.cell}}
|
|
|
|
{{datasets/dataset-actions actionItems=actionItems}}
|
|
|
|
{{/row.cell}}
|
|
|
|
{{/body.row}}
|
|
|
|
{{/each}}
|
|
|
|
{{/table.body}}
|
|
|
|
{{/dataset-table}}
|