diff options
Diffstat (limited to 'app/Template/user')
-rw-r--r-- | app/Template/user/edit.php | 3 | ||||
-rw-r--r-- | app/Template/user/index.php | 1 | ||||
-rw-r--r-- | app/Template/user/new.php | 3 | ||||
-rw-r--r-- | app/Template/user/show.php | 1 |
4 files changed, 0 insertions, 8 deletions
diff --git a/app/Template/user/edit.php b/app/Template/user/edit.php index e29dcfca..2462308f 100644 --- a/app/Template/user/edit.php +++ b/app/Template/user/edit.php @@ -17,9 +17,6 @@ <?= $this->form->label(t('Email'), 'email') ?> <?= $this->form->email('email', $values, $errors) ?><br/> - <?= $this->form->label(t('Default project'), 'default_project_id') ?> - <?= $this->form->select('default_project_id', $projects, $values, $errors) ?><br/> - <?= $this->form->label(t('Timezone'), 'timezone') ?> <?= $this->form->select('timezone', $timezones, $values, $errors) ?><br/> diff --git a/app/Template/user/index.php b/app/Template/user/index.php index 6b4396b2..08184698 100644 --- a/app/Template/user/index.php +++ b/app/Template/user/index.php @@ -18,7 +18,6 @@ <th><?= $paginator->order(t('Email'), 'email') ?></th> <th><?= $paginator->order(t('Administrator'), 'is_admin') ?></th> <th><?= $paginator->order(t('Two factor authentication'), 'twofactor_activated') ?></th> - <th><?= $paginator->order(t('Default project'), 'default_project_id') ?></th> <th><?= $paginator->order(t('Notifications'), 'notifications_enabled') ?></th> <th><?= t('External accounts') ?></th> <th><?= $paginator->order(t('Account type'), 'is_ldap_user') ?></th> diff --git a/app/Template/user/new.php b/app/Template/user/new.php index ba7a3881..5c55b0bb 100644 --- a/app/Template/user/new.php +++ b/app/Template/user/new.php @@ -24,9 +24,6 @@ <?= $this->form->label(t('Confirmation'), 'confirmation') ?> <?= $this->form->password('confirmation', $values, $errors, array('required')) ?><br/> - <?= $this->form->label(t('Default project'), 'default_project_id') ?> - <?= $this->form->select('default_project_id', $projects, $values, $errors) ?><br/> - <?= $this->form->label(t('Timezone'), 'timezone') ?> <?= $this->form->select('timezone', $timezones, $values, $errors) ?><br/> diff --git a/app/Template/user/show.php b/app/Template/user/show.php index a9de6d85..acb02f71 100644 --- a/app/Template/user/show.php +++ b/app/Template/user/show.php @@ -20,7 +20,6 @@ <h2><?= t('Preferences') ?></h2> </div> <ul class="listing"> - <li><?= t('Default project:') ?> <strong><?= (isset($user['default_project_id']) && isset($projects[$user['default_project_id']])) ? $this->e($projects[$user['default_project_id']]) : t('None') ?></strong></li> <li><?= t('Timezone:') ?> <strong><?= $this->text->in($user['timezone'], $timezones) ?></strong></li> <li><?= t('Language:') ?> <strong><?= $this->text->in($user['language'], $languages) ?></strong></li> <li><?= t('Notifications:') ?> <strong><?= $user['notifications_enabled'] == 1 ? t('Enabled') : t('Disabled') ?></strong></li> |