mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
23 lines
No EOL
633 B
PHP
23 lines
No EOL
633 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('Webhooks'), 'config', 'webhook') ?>
|
|
</li>
|
|
<li>
|
|
<?= $this->a(t('API'), 'config', 'api') ?>
|
|
</li>
|
|
</ul>
|
|
</div>
|