Blame view

src/Template/Users/edit.ctp 1.01 KB
19798ef9   Alexandre   Mode_install, maj...
1
2

<div class="utilisateurs form">
64fba1a2   Alexandre   Base du projet : ...
3
    <?= $this->Form->create($user) ?>
6c4edfa3   Alexandre   First Commit LabI...
4
    <fieldset>
19798ef9   Alexandre   Mode_install, maj...
5
        <h2><i class="icon-edit"></i> Editer un utilisateur</h2>
6c4edfa3   Alexandre   First Commit LabI...
6
7
        <?php
            echo $this->Form->input('nom');
64fba1a2   Alexandre   Base du projet : ...
8
9
            echo $this->Form->input('username');
            echo $this->Form->input('password');
6c4edfa3   Alexandre   First Commit LabI...
10
            echo $this->Form->input('email');
19798ef9   Alexandre   Mode_install, maj...
11
12
13
14
            echo $this->Form->input('role', [
            'options' => ['Super Administrateur' => 'Super Administrateur', 'Administration Plus' => 'Administration Plus', 'Administration' => 'Administration', 'Responsable' => 'Responsable', 'Utilisateur' => 'Utilisateur']
       		 ]);
            echo $this->Form->input('groupes_metier_id', ['label' => 'Groupe métier', 'options' => $groupesMetiers, 'empty' => true]);
6c4edfa3   Alexandre   First Commit LabI...
15
16
        ?>
    </fieldset>
0e5846aa   Alexandre   Css bouton valide...
17
    <?= $this->Form->submit(__('Valider')) ?>
6c4edfa3   Alexandre   First Commit LabI...
18
19
    <?= $this->Form->end() ?>
</div>
19798ef9   Alexandre   Mode_install, maj...
20
21
22
23
24
25
26

<div class="actions">
	<?php 
		echo $this->element('menu');
		echo $this->element('menu_form', [ 'pluralHumanName' => 'Utilisateurs' ]);
	?>
</div>