ohif-viewer/Packages/ohif-hotkeys/client/components/formTable.html

19 lines
610 B
HTML
Raw Normal View History

2017-05-04 16:59:51 +02:00
<template name="hotkeysFormTable">
<table class="full-width">
<thead>
<tr>
<th class="text-right p-r-1">Function</th>
2017-09-28 13:09:15 +02:00
<th class="text-center">Shortcut</th>
2017-05-04 16:59:51 +02:00
</tr>
</thead>
<tbody>
{{#each input in this.inputs}}
<tr>
<td class="text-right p-r-1">{{getLabel input}}</td>
2017-05-04 16:59:51 +02:00
<td width="200">{{>inputText (extend class='hotkey text-center' key=input.key value=input.value)}}</td>
</tr>
{{/each}}
</tbody>
</table>
</template>