diff options
Diffstat (limited to 'app/Template/user_view/show.php')
-rw-r--r-- | app/Template/user_view/show.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/Template/user_view/show.php b/app/Template/user_view/show.php index e57fd4cd..7f847f65 100644 --- a/app/Template/user_view/show.php +++ b/app/Template/user_view/show.php @@ -6,6 +6,7 @@ <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> + <?= $this->hook->render('template:user:show:profile:info', array('user' => $user)) ?> </ul> <div class="page-header"> |