Newer
Older
<html>
<head>
<#import "helpers/header.ftl" as header>
<@header.header "BudgetMaster - ${locale.getString('menu.hotkeys')}"/>
<#import "helpers/navbar.ftl" as navbar>
<@navbar.navbar "hotkeys" settings/>
<main>
<div class="card main-card background-color">
<div class="container">
<div class="section center-align">
<div class="headline"><i class="material-icons">keyboard</i> ${locale.getString("menu.hotkeys")}</div>
<div class="col s12 headline center-align">${locale.getString("hotkeys.general")}</div>

Robert Goldmann
committed
<#list hotkeysGeneral as hotKey>
<div class="row">
<@cellKeyWithModifier hotKey.getModifierLocalized()!'' hotKey.getKeyLocalized()/>
<div class="col s8 m5 l5">${hotKey.getTextLocalized()}</div>
</div>
</#list>
<div class="row">
<div class="col s12 headline center-align">${locale.getString("hotkeys.global.datepicker")}</div>
<#list hotkeysGlobalDatePicker as hotKey>
<div class="row">
<@cellKeyWithModifier hotKey.getModifierLocalized()!'' hotKey.getKeyLocalized()/>
<div class="col s8 m5 l5">${hotKey.getTextLocalized()}</div>
</div>
</#list>
</@header.content>
</div>
</main>
<!-- Scripts-->
<#import "helpers/scripts.ftl" as scripts>
<@scripts.scripts/>
</html>
<#macro cellKey key>
<div class="col s4 m3 offset-m2 l2 offset-l3 right-align bold">
<div class="keyboard-key">${key}</div>
</div>
</#macro>
<#macro cellKeyWithModifier modifier key>
<div class="col s4 m3 offset-m2 l2 offset-l3 right-align bold">
<#if modifier?? && modifier?has_content>
<div class="keyboard-key modifier-key">${modifier}</div>
<span class="bold">+</span>
</#if>
<div class="keyboard-key">${key}</div>
</div>