Breadcrumb->render([
[
'title' => 'Home',
'icon' => 'fa fa-home',
'url' => '/',
],
[
'title' => __('Configurazioni'),
'icon' => 'fa fa-wrench',
],
[
'title' => __('Lista Utenti'),
'icon' => 'fa fa-list',
'url' => ['controller' => 'users', 'action' => 'index'],
],
[
'title' => __('Dettaglio Utente'),
'icon' => 'fa fa-info',
],
]);
?>
photo): ?>
- = __('Nome utente') ?>
- = h($user->username) ?>
- = __('Nome') ?>
- = h($user->name) ?>
- = __('Cognome') ?>
- = h($user->surname) ?>
- = __('Codice Fiscale') ?>
- = h($user->tax_code) ?>
- = __('Data di nascita') ?>
- = h(isset($user->birthday) ? $user->birthday->format('d/m/Y') : '') ?>
- = __('Luogo di nascita') ?>
- = h($user->birthplace) ?>
- = __('Sesso') ?>
- = h($user->gender) ?>
- = __('Indirizzo') ?>
- = h($user->address) ?>
- = __('Città ') ?>
- = h($user->city) ?>
- = __('CAP') ?>
- = h($user->cap) ?>
- = __('Lingua preferita') ?>
- = h(isset($user->language->description) ? $user->language->description : __('Non specificata')) ?>
- = __('Organizzazione') ?>
- = h(!empty($user->organisation->actor->description) ? $user->organisation->actor->description : '') ?>
- = __('Profili') ?>
- = h($user->profiles) ?>
- = __('Recapiti:') ?>
- = h($user->actor->contacts) ?>