diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-08-22 17:39:37 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-08-22 17:39:37 -0400 |
commit | cd9bc86fbeea01fa492606b9c19ded36bf0ab366 (patch) | |
tree | cd7a9a5bca2e661107cdec11a2678fd68f8c9df4 /app/Template/action/index.php | |
parent | fd60964c239627d2d55c6eca0888be84a8f6653f (diff) |
Add new automated action to change task color based on the task link
Diffstat (limited to 'app/Template/action/index.php')
-rw-r--r-- | app/Template/action/index.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/Template/action/index.php b/app/Template/action/index.php index 6898fc26..bf2f7475 100644 --- a/app/Template/action/index.php +++ b/app/Template/action/index.php @@ -42,6 +42,8 @@ <?= $this->text->in($param['value'], $colors_list) ?> <?php elseif ($this->text->contains($param['name'], 'category_id')): ?> <?= $this->text->in($param['value'], $categories_list) ?> + <?php elseif ($this->text->contains($param['name'], 'link_id')): ?> + <?= $this->text->in($param['value'], $links_list) ?> <?php else: ?> <?= $this->e($param['value']) ?> <?php endif ?> |