open-nomad/ui/app/templates/components/attributes-section.hbs

19 lines
701 B
Handlebars
Raw Normal View History

{{#each-in this.attributes as |key value|}}
2017-09-19 14:47:10 +00:00
{{#if (is-object value)}}
<tr data-test-attributes-section>
<td data-test-heading class="is-subheading" colspan="2">
{{#if this.prefix}}<span class="is-faded" data-test-prefix>{{this.prefix}}.</span>{{/if}}{{key}}
2017-09-19 14:47:10 +00:00
</td>
</tr>
<AttributesSection @prefix={{if this.prefix (concat this.prefix "." key) key}} @attributes={{value}} />
2017-09-19 14:47:10 +00:00
{{else}}
<tr data-test-attributes-section>
<td data-test-key>
{{#if this.prefix}}<span class="is-faded" data-test-prefix>{{this.prefix}}.</span>{{/if}}
2017-09-19 14:47:10 +00:00
{{~key}}
</td>
<td data-test-value title="{{value}}">{{value}}</td>
2017-09-19 14:47:10 +00:00
</tr>
{{/if}}
{{/each-in}}