open-vault/ui/app/templates/components/auth-method/configuration.hbs
2018-04-03 09:16:57 -05:00

10 lines
442 B
Handlebars

<div class="box is-fullwidth is-sideless is-paddingless is-marginless">
{{#each model.attrs as |attr|}}
{{#if (eq attr.type "object")}}
{{info-table-row alwaysRender=true label=(or attr.options.label (to-label attr.name)) value=(stringify (get model attr.name))}}
{{else}}
{{info-table-row alwaysRender=true label=(or attr.options.label (to-label attr.name)) value=(get model attr.name)}}
{{/if}}
{{/each}}
</div>