19 lines
587 B
HTML
19 lines
587 B
HTML
<template name="hotkeysFormTable">
|
|
<table class="full-width">
|
|
<thead>
|
|
<tr>
|
|
<th class="text-right p-r-1">Function</th>
|
|
<th>Shortcut</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{#each input in this.inputs}}
|
|
<tr>
|
|
<td class="text-right p-r-1">{{input.label}}</td>
|
|
<td width="200">{{>inputText (extend class='hotkey text-center' key=input.key value=input.value)}}</td>
|
|
</tr>
|
|
{{/each}}
|
|
</tbody>
|
|
</table>
|
|
</template>
|