2018-04-02 08:29:19 +02:00
|
|
|
<div class="row">
|
2022-01-20 13:28:33 +01:00
|
|
|
<div class="col1">
|
2018-04-02 08:29:19 +02:00
|
|
|
<?php echo template::button('userAddBack', [
|
|
|
|
'class' => 'buttonGrey',
|
|
|
|
'href' => helper::baseUrl(false),
|
2022-01-20 13:28:33 +01:00
|
|
|
'value' => template::ico('home')
|
2018-04-02 08:29:19 +02:00
|
|
|
]); ?>
|
|
|
|
</div>
|
2022-01-20 13:28:33 +01:00
|
|
|
<div class="col1">
|
2021-11-04 19:12:27 +01:00
|
|
|
<?php echo template::button('userHelp', [
|
2021-11-04 19:05:12 +01:00
|
|
|
'href' => 'https://doc.zwiicms.fr/gestion-des-utilisateurs',
|
|
|
|
'target' => '_blank',
|
2022-01-20 13:28:33 +01:00
|
|
|
'value' => template::ico('help'),
|
2022-01-20 15:40:56 +01:00
|
|
|
'class' => 'buttonHelp',
|
|
|
|
'help' => 'Consulter l\'aide en ligne'
|
2021-11-04 19:05:12 +01:00
|
|
|
]); ?>
|
|
|
|
</div>
|
2022-01-20 13:28:33 +01:00
|
|
|
<div class="col1 offset8">
|
2020-10-04 17:14:15 +02:00
|
|
|
<?php echo template::button('userImport', [
|
|
|
|
'href' => helper::baseUrl() . 'user/import',
|
2022-01-21 19:11:51 +01:00
|
|
|
'value' => template::ico('upload') ,
|
2022-01-20 15:40:56 +01:00
|
|
|
'help' => 'Importer des utilisateurs en masse'
|
2020-10-04 17:14:15 +02:00
|
|
|
]); ?>
|
|
|
|
</div>
|
2022-01-20 13:28:33 +01:00
|
|
|
<div class="col1">
|
2018-04-02 08:29:19 +02:00
|
|
|
<?php echo template::button('userAdd', [
|
|
|
|
'href' => helper::baseUrl() . 'user/add',
|
2022-01-20 15:40:56 +01:00
|
|
|
'value' => template::ico('plus'),
|
|
|
|
'help' => 'Ajouter un utilisateur'
|
2018-04-02 08:29:19 +02:00
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<?php echo template::table([3, 4, 3, 1, 1], $module::$users, ['Identifiant', 'Nom', 'Groupe', '', '']); ?>
|