blob: 89f2c203735cbfad0d3af174422bff7b912863cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<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('Webhooks'), 'config', 'webhook') ?>
</li>
<li>
<?= $this->a(t('API'), 'config', 'api') ?>
</li>
</ul>
</div>
|