| Server IP : 185.252.147.100 / Your IP : 216.73.216.43 Web Server : nginx/1.27.3 System : Linux mitrofanov.ru 6.1.0-37-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.140-1 (2025-05-22) x86_64 User : mitr ( 1000) PHP Version : 8.2.29 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /www/html/kanboard/app/Template/tag/ |
Upload File : |
<div class="page-header">
<h2><?= t('Global tags') ?></h2>
<ul>
<li>
<?= $this->modal->medium('plus', t('Add new tag'), 'TagController', 'create') ?>
</li>
</ul>
</div>
<?php if (empty($tags)): ?>
<p class="alert"><?= t('There is no global tag at the moment.') ?></p>
<?php else: ?>
<table class="table-striped table-scrolling">
<tr>
<th class="column-60"><?= t('Tag') ?></th>
<th class="column-20"><?= t('Color') ?></th>
<th><?= t('Action') ?></th>
</tr>
<?php foreach ($tags as $tag): ?>
<tr>
<td><?= $this->text->e($tag['name']) ?></td>
<td>
<?php if ($tag['color_id']): ?>
<div class="color-picker-square color-<?= $tag['color_id'] ?>"></div>
<?= $this->text->e($colors[$tag['color_id']]) ?>
<?php endif ?>
</td>
<td>
<?= $this->modal->medium('edit', t('Edit'), 'TagController', 'edit', array('tag_id' => $tag['id'])) ?>
<?= $this->modal->confirm('trash-o', t('Remove'), 'TagController', 'confirm', array('tag_id' => $tag['id'])) ?>
</td>
</tr>
<?php endforeach ?>
</table>
<?php endif ?>