{{#list-accordion source=sortedDrivers key="name" as |a|}}
{{#a.head buttonLabel="details" isExpandable=a.item.detected}}
{{a.item.name}}
{{#if a.item.detected}}
{{if a.item.healthy "Healthy" "Unhealthy"}}
{{/if}}
Detected
{{if a.item.detected "Yes" "No"}}
Last Updated
{{moment-from-now a.item.updateTime interval=1000}}
{{/a.head}}
{{#a.body}}
{{a.item.healthDescription}}
{{capitalize a.item.name}} Attributes
{{#if a.item.attributes.attributesStructured}}
{{attributes-table
attributes=a.item.attributesShort
class="attributes-table"}}
{{else}}
{{/if}}
{{/a.body}}
{{/list-accordion}}