Blame view

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

96b028a1   Alexandre   Migration de tout...
2
<div class="users index">
602e9d7a   Alexandre   Version: 2.5.5.0
3
<?php echo '<h2><i class="icon-list"></i> Liste des utilisateurs privilégiés ('.$nbUsers.')</h2>'; ?>
d653b27f   Thibaud Ajas   Correction de fau...
4
    <table style="border-collapse: separate; border-spacing: 0;">
63c3cb16   epallier   Nombreux petits b...
5
6
7
8
9
10
11
		<thead>
			<tr>
				<th class="actions"><?= __('') ?></th>
				<th><?= $this->Paginator->sort('nom') ?></th>
				<th><?= $this->Paginator->sort('role') ?></th>
				<th><?= $this->Paginator->sort('groupes_metier_id', $configuration->nom_groupe_metier) ?></th>
				<th><?= $this->Paginator->sort('groupes_thematique_id', $configuration->nom_groupe_thematique) ?></th>
5b7a9af0   Alexis Proust   mise a jour fichier
12
				<th><?= $this->Paginator->sort('sur_categorie_id', 'Domaine') ?></th>
63c3cb16   epallier   Nombreux petits b...
13
14
15
16
				<th class="actions"><?= __('') ?></th>
			</tr>
		</thead>
		<tbody>
64fba1a2   Alexandre   Base du projet : ...
17
            <?php foreach ($users as $user): ?>
6c4edfa3   Alexandre   First Commit LabI...
18
            <tr>
63c3cb16   epallier   Nombreux petits b...
19
				<td class="actions" style="padding: 6px 0; text-align: left;">               
9fc6b8a2   Alexandre   Version: 2.4.2.6
20
                    <?php if($role == 'Super Administrateur') { ?>
96b028a1   Alexandre   Migration de tout...
21
                    <?= $this->Html->link(__('<i class="icon-pencil"></i>'), ['action' => 'edit', $user->id], ['title' => 'Editer', 'style' => 'margin: 0 2px', 'escape' => false ]) ?>
7f14164e   Malik Imelhaine   Modification mess...
22
                    <?= $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 l\'utilisateur {0} ?', $user->nom)]) ?>
9fc6b8a2   Alexandre   Version: 2.4.2.6
23
                	<?php } ?>
6c4edfa3   Alexandre   First Commit LabI...
24
                </td>
63c3cb16   epallier   Nombreux petits b...
25
26
27
28
				<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>
				<td class="smallText"><?= $user->has('groupes_thematique') ? h($user->groupes_thematique->nom) : '' ?></td>
5b7a9af0   Alexis Proust   mise a jour fichier
29
				<td class="smallText"><?= $user->has('sur_categorie_id') ? h($user->sur_category->nom) : '' ?></td>
96b028a1   Alexandre   Migration de tout...
30

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

9478e982   Etienne Pallier   refactorisation d...
36
37
	<?php echo $this->element('pagination'); ?> 
    
6c4edfa3   Alexandre   First Commit LabI...
38
</div>
4260780b   Alexandre   Migration vue, co...
39

63c3cb16   epallier   Nombreux petits b...
40
<div class="actions">
4260780b   Alexandre   Migration vue, co...
41
			<?php echo $this->element('menu') ?>
63c3cb16   epallier   Nombreux petits b...
42
43
44
45
46
47
			<?php

echo $this->element('menu_index', [
    'pluralHumanName' => 'Utilisateurs',
    'singularHumanName' => 'Utilisateur'
])?>
4260780b   Alexandre   Migration vue, co...
48
		</div>