diff options
author | Mark Szymanski <mark@blueye.com> | 2017-01-17 21:46:24 -0600 |
---|---|---|
committer | Mark Szymanski <mark@blueye.com> | 2017-01-17 21:46:24 -0600 |
commit | d798a26666189a586e190d9914cc19febbb4189a (patch) | |
tree | a5c61391dfe64a8434e19443b7a6914b3bfd18e0 /app/Template/user_view | |
parent | 6a6069ee2f3a85d80ab5a1fb36ca1d021ccbe414 (diff) |
Updates to clarify difference between username and name in profile page (fixes #2812)
Diffstat (limited to 'app/Template/user_view')
-rw-r--r-- | app/Template/user_view/profile.php | 6 | ||||
-rw-r--r-- | app/Template/user_view/show.php | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/app/Template/user_view/profile.php b/app/Template/user_view/profile.php index 117ab719..486ca428 100644 --- a/app/Template/user_view/profile.php +++ b/app/Template/user_view/profile.php @@ -3,9 +3,9 @@ <?= $this->avatar->render($user['id'], $user['username'], $user['name'], $user['email'], $user['avatar_path']) ?> <div class="panel"> <ul> - <li><?= t('Username:') ?> <strong><?= $this->text->e($user['username']) ?></strong></li> - <li><?= t('Name:') ?> <strong><?= $this->text->e($user['name']) ?: t('None') ?></strong></li> + <li><?= t('Login:') ?> <strong><?= $this->text->e($user['username']) ?></strong></li> + <li><?= t('Full Name:') ?> <strong><?= $this->text->e($user['name']) ?: t('None') ?></strong></li> <li><?= t('Email:') ?> <strong><?= $this->text->e($user['email']) ?: t('None') ?></strong></li> </ul> </div> -</section>
\ No newline at end of file +</section> diff --git a/app/Template/user_view/show.php b/app/Template/user_view/show.php index 4b444b89..e57fd4cd 100644 --- a/app/Template/user_view/show.php +++ b/app/Template/user_view/show.php @@ -2,8 +2,8 @@ <h2><?= t('Summary') ?></h2> </div> <ul class="panel"> - <li><?= t('Username:') ?> <strong><?= $this->text->e($user['username']) ?></strong></li> - <li><?= t('Name:') ?> <strong><?= $this->text->e($user['name']) ?: t('None') ?></strong></li> + <li><?= t('Login:') ?> <strong><?= $this->text->e($user['username']) ?></strong></li> + <li><?= t('Full Name:') ?> <strong><?= $this->text->e($user['name']) ?: t('None') ?></strong></li> <li><?= t('Email:') ?> <strong><?= $this->text->e($user['email']) ?: t('None') ?></strong></li> <li><?= t('Status:') ?> <strong><?= $user['is_active'] ? t('Active') : t('Inactive') ?></strong></li> </ul> |