2021-09-02 16:34:25 +00:00
|
|
|
<?= $this->extend('_layout') ?>
|
2020-08-05 16:10:39 +00:00
|
|
|
|
|
|
|
<?= $this->section('title') ?>
|
2021-09-08 15:51:33 +00:00
|
|
|
<?= lang('User.view', [
|
2022-03-04 14:33:48 +00:00
|
|
|
'username' => esc($user->username),
|
2021-09-08 15:51:33 +00:00
|
|
|
]) ?>
|
2020-08-05 16:10:39 +00:00
|
|
|
<?= $this->endSection() ?>
|
|
|
|
|
2022-10-15 11:22:08 +00:00
|
|
|
<?= $this->section('pageTitle') ?>
|
|
|
|
<?= lang('User.view', [
|
|
|
|
'username' => esc($user->username),
|
|
|
|
]) ?>
|
|
|
|
<?= $this->endSection() ?>
|
|
|
|
|
2020-08-05 16:10:39 +00:00
|
|
|
|
|
|
|
<?= $this->section('content') ?>
|
|
|
|
|
2021-09-08 15:51:33 +00:00
|
|
|
<?= view('_partials/_user_info.php', [
|
|
|
|
'user' => $user,
|
|
|
|
]) ?>
|
2020-08-05 16:10:39 +00:00
|
|
|
|
|
|
|
<?= $this->endSection() ?>
|