summaryrefslogtreecommitdiff
path: root/app/Template/config/sidebar.php
blob: 2e81d48af62baad31e2559ac1ec112d7c68f5234 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<div class="sidebar">
    <h2><?= t('Actions') ?></h2>
    <ul>
        <li>
            <?= $this->a(t('About'), 'config', 'index') ?>
        </li>
        <li>
            <?= $this->a(t('Application settings'), 'config', 'application') ?>
        </li>
        <li>
            <?= $this->a(t('Board settings'), 'config', 'board') ?>
        </li>
        <li>
            <?= $this->a(t('Link settings'), 'link', 'index') ?>
        </li>
        <li>
            <?= $this->a(t('Currency rates'), 'currency', 'index') ?>
        </li>
        <li>
            <?= $this->a(t('Webhooks'), 'config', 'webhook') ?>
        </li>
        <li>
            <?= $this->a(t('API'), 'config', 'api') ?>
        </li>
    </ul>
</div>