summaryrefslogtreecommitdiff
path: root/app/Template/config/sidebar.php
blob: 4bae9e2e2f9810a5d4ff2cb726caca95a8a728cc (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
27
28
29
30
31
32
33
34
35
<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('Project settings'), 'config', 'project') ?>
        </li>
        <li>
            <?= $this->a(t('Board settings'), 'config', 'board') ?>
        </li>
        <li>
            <?= $this->a(t('Calendar settings'), 'config', 'calendar') ?>
        </li>
        <li>
            <?= $this->a(t('Link settings'), 'link', 'index') ?>
        </li>
        <li>
            <?= $this->a(t('Currency rates'), 'currency', 'index') ?>
        </li>
        <li>
            <?= $this->a(t('Integrations'), 'config', 'integrations') ?>
        </li>
        <li>
            <?= $this->a(t('Webhooks'), 'config', 'webhook') ?>
        </li>
        <li>
            <?= $this->a(t('API'), 'config', 'api') ?>
        </li>
    </ul>
</div>