diff options
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> |