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>
|
2017-06-09 21:36:32 +02:00
|
|
|
<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>
|