{{#if collection}}
{{#each collection as |value index|}}
{{d-button action="removeValue" actionParam=value icon="times" class="remove-value-btn btn-small"}} {{input value=value.key class="value-input" focus-out=(action "changeKey" index)}} {{input value=value.secret class="value-input" focus-out=(action "changeSecret" index) type="password"}}
{{/each}}
{{/if}}
{{text-field value=newKey class="new-value-input key" placeholder=setting.placeholder.key}} {{input type="password" value=newSecret class="new-value-input secret" placeholder=setting.placeholder.value}} {{d-button action="addValue" icon="plus" class="add-value-btn btn-small"}}