ohif-viewer/Packages/ohif-core/components/bootstrap/input/groupRadio.html
2016-07-22 11:12:04 +02:00

21 lines
595 B
HTML

<template name="groupRadio">
{{#group (extend this
class=(concat 'form-group ' this.class)
wrappers=(concat ''
this.wrappers
(valueIf reactive this.label 'wrapperTitle ' '')
)
)}}
{{>UI.contentBlock}}
{{#each item in (reactive this.items)}}
{{>inputRadio
class=this.radioClass
name=this.key
value=item.value
label=item.label
checked=(eq item.value (reactive this.value))
}}
{{/each}}
{{/group}}
</template>