= t('Everybody have access to this project.') ?>
= t('No user have been allowed specifically.') ?>
= t('User') ?> |
= t('Role') ?> |
= t('Actions') ?> |
= $this->text->e($user['name'] ?: $user['username']) ?> |
= $this->form->select(
'role-'.$user['id'],
$roles,
array('role-'.$user['id'] => $user['role']),
array(),
array('data-url="'.$this->url->href('ProjectPermissionController', 'changeUserRole', array('project_id' => $project['id'])).'"', 'data-id="'.$user['id'].'"'),
'project-change-role'
) ?>
|
= $this->url->link(t('Remove'), 'ProjectPermissionController', 'removeUser', array('project_id' => $project['id'], 'user_id' => $user['id']), true) ?>
|
= t('No group have been allowed specifically.') ?>
= t('Group') ?> |
= t('Role') ?> |
= t('Actions') ?> |
= $this->text->e($group['name']) ?> |
= $this->form->select(
'role-'.$group['id'],
$roles,
array('role-'.$group['id'] => $group['role']),
array(),
array('data-url="'.$this->url->href('ProjectPermissionController', 'changeGroupRole', array('project_id' => $project['id'])).'"', 'data-id="'.$group['id'].'"'),
'project-change-role'
) ?>
|
= $this->url->link(t('Remove'), 'ProjectPermissionController', 'removeGroup', array('project_id' => $project['id'], 'group_id' => $group['id']), true) ?>
|