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

20 lines
541 B
PHP
Raw Normal View History

2014-12-22 19:15:38 +01:00
<div class="sidebar">
<h2><?= t('Actions') ?></h2>
<ul>
<li>
2015-01-16 14:23:05 +01:00
<?= $this->a(t('About'), 'config', 'index') ?>
2014-12-22 19:15:38 +01:00
</li>
<li>
2015-01-16 14:23:05 +01:00
<?= $this->a(t('Application settings'), 'config', 'application') ?>
2014-12-22 19:15:38 +01:00
</li>
<li>
2015-01-16 14:23:05 +01:00
<?= $this->a(t('Board settings'), 'config', 'board') ?>
2014-12-22 19:15:38 +01:00
</li>
<li>
2015-01-16 14:23:05 +01:00
<?= $this->a(t('Webhooks'), 'config', 'webhook') ?>
2014-12-22 19:15:38 +01:00
</li>
<li>
2015-01-16 14:23:05 +01:00
<?= $this->a(t('API'), 'config', 'api') ?>
2014-12-22 19:15:38 +01:00
</li>
</ul>
</div>