diff options
Diffstat (limited to 'app/Template/config')
-rw-r--r-- | app/Template/config/about.php | 25 | ||||
-rw-r--r-- | app/Template/config/sidebar.php | 3 |
2 files changed, 23 insertions, 5 deletions
diff --git a/app/Template/config/about.php b/app/Template/config/about.php index d96e6bdd..f6474e21 100644 --- a/app/Template/config/about.php +++ b/app/Template/config/about.php @@ -1,7 +1,7 @@ <div class="page-header"> <h2><?= t('About') ?></h2> </div> -<section class="listing"> +<div class="listing"> <ul> <li> <?= t('Official website:') ?> @@ -12,12 +12,11 @@ <strong><?= APP_VERSION ?></strong> </li> </ul> -</section> - +</div> <div class="page-header"> <h2><?= t('Database') ?></h2> </div> -<section class="listing"> +<div class="listing"> <ul> <li> <?= t('Database driver:') ?> @@ -38,4 +37,20 @@ </li> <?php endif ?> </ul> -</section>
\ No newline at end of file +</div> +<div class="page-header"> + <h2><?= t('Keyboard shortcuts') ?></h2> +</div> +<div class="listing"> + <h3><?= t('Board view') ?></h3> + <ul> + <li><?= t('New task') ?> = <strong>n</strong></li> + <li><?= t('Expand/collapse tasks') ?> = <strong>s</strong></li> + </ul> + <h3><?= t('Application') ?></h3> + <ul> + <li><?= t('Open board switcher') ?> = <strong>b</strong></li> + <li><?= t('Close dialog box') ?> = <strong>ESC</strong></li> + <li><?= t('Submit a form') ?> = <strong>CTRL+ENTER</strong> <?= t('or') ?> <strong>⌘+ENTER</strong></li> + </ul> +</div>
\ No newline at end of file diff --git a/app/Template/config/sidebar.php b/app/Template/config/sidebar.php index 8e6fa379..89f2c203 100644 --- a/app/Template/config/sidebar.php +++ b/app/Template/config/sidebar.php @@ -11,6 +11,9 @@ <?= $this->a(t('Board settings'), 'config', 'board') ?> </li> <li> + <?= $this->a(t('Link settings'), 'link', 'index') ?> + </li> + <li> <?= $this->a(t('Webhooks'), 'config', 'webhook') ?> </li> <li> |