Blame view

src/Template/Users/index.ctp 2.59 KB
64fba1a2   Alexandre   Base du projet : ...
1

96b028a1   Alexandre   Migration de tout...
2
3
<div class="users index">
<?php echo '<h2><i class="icon-list"></i> Liste des utilisateurs privilégiés</h2>'; ?>
6c4edfa3   Alexandre   First Commit LabI...
4
5
6
    <table cellpadding="0" cellspacing="0">
        <thead>
            <tr>
6c4edfa3   Alexandre   First Commit LabI...
7
                <th><?= $this->Paginator->sort('nom') ?></th>
6c4edfa3   Alexandre   First Commit LabI...
8
                <th><?= $this->Paginator->sort('role') ?></th>
e3633c13   Alexandre   Version: 2.4.2.23
9
                <th><?= $this->Paginator->sort('groupes_metier_id', $configuration->nom_groupe_metier) ?></th>
3367192b   Alexandre   Version: 2.4.3.13
10
                <th><?= $this->Paginator->sort('groupes_thematique_id', $configuration->nom_groupe_thematique) ?></th>
96b028a1   Alexandre   Migration de tout...
11
                <th class="actions"><?= __('') ?></th>
6c4edfa3   Alexandre   First Commit LabI...
12
13
14
            </tr>
        </thead>
        <tbody>
64fba1a2   Alexandre   Base du projet : ...
15
            <?php foreach ($users as $user): ?>
6c4edfa3   Alexandre   First Commit LabI...
16
            <tr>
5d0d680d   Alexandre   Version: 2.2.0
17
18
19
                <td class="smallText"><?= $this->Html->link($user->nom, ['action' => 'view', $user->id]) ?></td>
                <td class="smallText"><?= h($user->role) ?></td>
                <td class="smallText"><?= $user->has('groupes_metier') ? h($user->groupes_metier->nom) : '' ?></td>
3367192b   Alexandre   Version: 2.4.3.13
20
                <td class="smallText"><?= $user->has('groupes_thematique') ? h($user->groupes_thematique->nom) : '' ?></td>
96b028a1   Alexandre   Migration de tout...
21
22
23

                <td class="actions" style="padding: 6px 0;">
                    <?= $this->Html->link(__('<i class="icon-eye-open"></i>'), ['action' => 'view', $user->id], ['title' => 'Visualiser', 'style' => 'margin: 0 2px', 'escape' => false ]) ?>
9fc6b8a2   Alexandre   Version: 2.4.2.6
24
25
                    
                    <?php if($role == 'Super Administrateur') { ?>
96b028a1   Alexandre   Migration de tout...
26
27
                    <?= $this->Html->link(__('<i class="icon-pencil"></i>'), ['action' => 'edit', $user->id], ['title' => 'Editer', 'style' => 'margin: 0 2px', 'escape' => false ]) ?>
                    <?= $this->Form->postLink(__('<i class="icon-trash"></i>'), ['action' => 'delete', $user->id], ['title' => 'Supprimer', 'style' => 'margin: 0 2px', 'escape' => false, 'confirm' => __('Êtes-vous sur de vouloir supprimer # {0}?', $user->id)]) ?>
9fc6b8a2   Alexandre   Version: 2.4.2.6
28
                	<?php } ?>
6c4edfa3   Alexandre   First Commit LabI...
29
                </td>
96b028a1   Alexandre   Migration de tout...
30

6c4edfa3   Alexandre   First Commit LabI...
31
32
33
34
            </tr>
            <?php endforeach; ?>
        </tbody>
    </table>
96b028a1   Alexandre   Migration de tout...
35

4260780b   Alexandre   Migration vue, co...
36
    <p><?= $this->Paginator->counter(['format' => 'Page {{page}} sur {{pages}}']) ?></p>
96b028a1   Alexandre   Migration de tout...
37
38
39
40
41
      	
   	<div class="paging">
            <?= $this->Paginator->prev('< ' . __(''), ['class' => 'prev disabled']) ?>
            <?= $this->Paginator->numbers(['separator' => '']) ?>
            <?= $this->Paginator->next(__('') . ' >', ['class' => 'next disabled']) ?>
6c4edfa3   Alexandre   First Commit LabI...
42
    </div>
96b028a1   Alexandre   Migration de tout...
43

6c4edfa3   Alexandre   First Commit LabI...
44
</div>
4260780b   Alexandre   Migration vue, co...
45
46
47
48
49
50
51

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