ohif-viewer/Packages/ohif-hotkeys/client/components/form.html
2017-06-14 09:19:49 +02:00

12 lines
552 B
HTML

<template name="hotkeysForm">
{{#form (extend this class='form-themed' api=instance.api)}}
{{#each hotkeyInputInformation in getHotkeyInputInformationList}}
{{>inputText (extend hotkeyInputInformation class='hotkey')}}
{{/each}}
<div class="clearfix form-buttons">
{{#button class='btn btn-primary pull-right' action='save'}}Save{{/button}}
{{#button class='btn btn-secondary pull-right m-r-1' action='resetDefaults'}}Reset to Defaults{{/button}}
</div>
{{/form}}
</template>