= t('No user') ?>
= $this->order(t('Id'), 'id', $pagination) ?> | = $this->order(t('Username'), 'username', $pagination) ?> | = $this->order(t('Name'), 'name', $pagination) ?> | = $this->order(t('Email'), 'email', $pagination) ?> | = $this->order(t('Administrator'), 'is_admin', $pagination) ?> | = $this->order(t('Default project'), 'default_project_id', $pagination) ?> | = $this->order(t('Notifications'), 'notifications_enabled', $pagination) ?> | = t('External accounts') ?> | = $this->order(t('Account type'), 'is_ldap_user', $pagination) ?> |
---|---|---|---|---|---|---|---|---|
= $this->a('#'.$user['id'], 'user', 'show', array('user_id' => $user['id'])) ?> | = $this->a($this->e($user['username']), 'user', 'show', array('user_id' => $user['id'])) ?> | = $this->e($user['name']) ?> | = $this->e($user['email']) ?> | = $user['is_admin'] ? t('Yes') : t('No') ?> | = (isset($user['default_project_id']) && isset($projects[$user['default_project_id']])) ? $this->e($projects[$user['default_project_id']]) : t('None'); ?> | = t('Enabled') ?> = t('Disabled') ?> |
|
= $user['is_ldap_user'] ? t('Remote') : t('Local') ?> |