1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/web/ synced 2025-03-30 00:00:13 +01:00
VILLASweb/app/templates/components/properties-table.hbs
2015-10-09 09:22:35 +02:00

13 lines
337 B
Handlebars

<tr>
<th>Name</th>
<th>Value</th>
<th>Date</th>
</tr>
{{#each properties as |property|}}
<tr>
<td>{{#link-to 'lab-mashup.entity.property' property}}{{property.name}}{{/link-to}}</td>
<!--<td>{{property.name}}</td>-->
<td>{{property.value}} {{property.type}}</td>
<td>{{property.timestamp}}</td>
</tr>
{{/each}}