1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/kanboard_ynh.git synced 2024-09-03 19:36:17 +02:00
kanboard_ynh/sources/app/Template/config/sidebar.php
2015-04-21 17:56:16 +02:00

29 lines
No EOL
830 B
PHP

<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('Integrations'), 'config', 'integrations') ?>
</li>
<li>
<?= $this->a(t('Webhooks'), 'config', 'webhook') ?>
</li>
<li>
<?= $this->a(t('API'), 'config', 'api') ?>
</li>
</ul>
</div>