diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-09-17 15:25:27 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-09-17 15:25:27 -0400 |
commit | 0e055eabe1a7d0e077105f6e9cc48057c9540443 (patch) | |
tree | 0fc7f9acfb0609ce5fb629dae9584471802be063 /app/Template/project_role/show.php | |
parent | 7399c3c59632712b0e9da778dd542fc681a5e0c3 (diff) |
Add custom role edition
Diffstat (limited to 'app/Template/project_role/show.php')
-rw-r--r-- | app/Template/project_role/show.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/Template/project_role/show.php b/app/Template/project_role/show.php index 595416ac..81281a3e 100644 --- a/app/Template/project_role/show.php +++ b/app/Template/project_role/show.php @@ -27,6 +27,10 @@ <?= $this->url->link(t('Add a new column restriction'), 'ColumnMoveRestrictionController', 'create', array('project_id' => $project['id'], 'role_id' => $role['role_id']), false, 'popover') ?> </li> <li> + <i class="fa fa-pencil fa-fw" aria-hidden="true"></i> + <?= $this->url->link(t('Edit this role'), 'ProjectRoleController', 'edit', array('project_id' => $project['id'], 'role_id' => $role['role_id']), false, 'popover') ?> + </li> + <li> <i class="fa fa-trash-o fa-fw" aria-hidden="true"></i> <?= $this->url->link(t('Remove this role'), 'ProjectRoleController', 'confirm', array('project_id' => $project['id'], 'role_id' => $role['role_id']), false, 'popover') ?> </li> |