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-27 15:39:57 -07:00
|
|
|
<span class="entity-list__title">
|
|
|
|
{{entity.name}}
|
|
|
|
</span>
|
2017-04-26 22:32:37 -07:00
|
|
|
{{/link-to}}
|
2017-04-27 17:00:32 -07:00
|
|
|
|
2017-04-27 15:39:57 -07:00
|
|
|
{{dataset-owner-list owners=entity.owners datasetName=entity.name}}
|
2017-04-26 22:32:37 -07:00
|
|
|
|
|
|
|
{{#if entity.formatedModified}}
|
2017-04-27 15:39:57 -07:00
|
|
|
<span>Last Modified:</span>
|
2017-04-27 17:00:32 -07:00
|
|
|
|
2017-04-27 15:39:57 -07:00
|
|
|
<span title="{{entity.formatedModified}}">
|
|
|
|
{{moment-from-now entity.formatedModified }}
|
|
|
|
</span>
|
2017-04-26 22:32:37 -07:00
|
|
|
{{/if}}
|
|
|
|
{{/row.cell}}
|
|
|
|
{{#row.cell}}
|
|
|
|
{{datasets/dataset-actions actionItems=actionItems}}
|
|
|
|
{{/row.cell}}
|
|
|
|
{{/body.row}}
|
|
|
|
{{/each}}
|
|
|
|
{{/table.body}}
|
|
|
|
{{/dataset-table}}
|