diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-09-10 22:37:57 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-09-10 22:37:57 -0400 |
commit | 44f680cf2f1463721eb5bdb7eda4d3b339e63ba9 (patch) | |
tree | ed4aeef8b32dbd76277dacf864b028677bc10809 /app/Template/column/index.php | |
parent | 75470c72428c8d8f278d160369558ab31b137fb1 (diff) |
Add ui to create new custom project roles and column restrictions
Diffstat (limited to 'app/Template/column/index.php')
-rw-r--r-- | app/Template/column/index.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/Template/column/index.php b/app/Template/column/index.php index 66890ba5..8c96a350 100644 --- a/app/Template/column/index.php +++ b/app/Template/column/index.php @@ -41,9 +41,11 @@ <a href="#" class="dropdown-menu dropdown-menu-link-icon"><i class="fa fa-cog fa-fw"></i><i class="fa fa-caret-down"></i></a> <ul> <li> + <i class="fa fa-pencil-square-o fa-fw" aria-hidden="true"></i> <?= $this->url->link(t('Edit'), 'ColumnController', 'edit', array('project_id' => $project['id'], 'column_id' => $column['id']), false, 'popover') ?> </li> <li> + <i class="fa fa-trash-o fa-fw" aria-hidden="true"></i> <?= $this->url->link(t('Remove'), 'ColumnController', 'confirm', array('project_id' => $project['id'], 'column_id' => $column['id']), false, 'popover') ?> </li> </ul> |