12 lines
552 B
HTML
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>
|