summaryrefslogtreecommitdiff
path: root/app/Template/user_view/show.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Template/user_view/show.php')
-rw-r--r--app/Template/user_view/show.php4
1 files changed, 2 insertions, 2 deletions
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>