22 lines
988 B
HTML
22 lines
988 B
HTML
<template name="hotkeysForm">
|
|
{{#form (extend this api=instance.api class='form-themed')}}
|
|
<div class="form-content">
|
|
{{#let lists=getHotkeyInputInformationLists}}
|
|
<div class="row">
|
|
<div class="col-lg-6 hotkeys-left">
|
|
{{>hotkeysFormTable inputs=lists.left}}
|
|
</div>
|
|
<div class="col-lg-6 hotkeys-right">
|
|
{{>hotkeysFormTable inputs=lists.right}}
|
|
</div>
|
|
</div>
|
|
{{/let}}
|
|
</div>
|
|
<div class="form-buttons clearfix">
|
|
{{#button class='btn btn-danger pull-left' action='resetDefaults'}}Reset to Defaults{{/button}}
|
|
{{#button class='btn btn-primary pull-right' action='save'}}Save{{/button}}
|
|
{{#button class='btn btn-secondary pull-right m-r-1' tagAttributes=(extend '' data-dismiss='modal')}}Close{{/button}}
|
|
</div>
|
|
{{/form}}
|
|
</template>
|