Blame view

src/Template/Users/index_recap.ctp 2.09 KB
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
1
2
3
4

<div class="users index">
<?php echo '<h2><i class="icon-list"></i> Récapitulatif des Responsables et leur Domaine ('.$nbUsers.')</h2>'; ?>
    <table cellpadding="0" cellspacing="0">
63c3cb16   epallier   Nombreux petits b...
5
6
7
		<thead>
			<tr>
				<th class="actions"><?= __('') ?></th>
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
8
9
10
				<th><?= $this->Paginator->sort('sur_categorie_id', 'Domaine') ?></th>
				<th><?= $this->Paginator->sort('nom') ?></th>
				<th><?= $this->Paginator->sort('email') ?></th>
63c3cb16   epallier   Nombreux petits b...
11
12
13
14
				<th class="actions"><?= __('') ?></th>
			</tr>
		</thead>
		<tbody>
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
15
16
            <?php foreach ($users as $user): ?>
            <tr>
63c3cb16   epallier   Nombreux petits b...
17
				<td class="actions" style="padding: 6px 0; text-align: left;">               
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
18
19
                    <?php if($role == 'Super Administrateur') { ?>
                    <?= $this->Html->link(__('<i class="icon-pencil"></i>'), ['action' => 'edit', $user->id], ['title' => 'Editer', 'style' => 'margin: 0 2px', 'escape' => false ]) ?>
ed4c8419   mimelhaine   Test avant merge
20
                    <?= $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)]) ?>
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
21
22
23
24
                	<?php } ?>
                </td>
				<td class="smallText"><?= $user->has('sur_categorie_id') ? h($user->sur_category->nom) : '' ?></td>
				<td class="smallText"><?= $this->Html->link($user->nom, ['action' => 'view', $user->id]) ?></td>
63c3cb16   epallier   Nombreux petits b...
25
26
				<td class="smallText"><?= h($user->email) ?></td>

b3dceb2a   Alexis Proust   Ajout nouveaux fi...
27

63c3cb16   epallier   Nombreux petits b...
28
			</tr>
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
29
30
            <?php endforeach; ?>
        </tbody>
63c3cb16   epallier   Nombreux petits b...
31
	</table>
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
32

63c3cb16   epallier   Nombreux petits b...
33
34
35
	<p><?= $this->Paginator->counter(['format' => 'Page {{page}} sur {{pages}}']) ?></p>

	<div class="paging">
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
36
37
38
39
40
41
42
            <?= $this->Paginator->prev('< ' . __(''), ['class' => 'prev disabled']) ?>
            <?= $this->Paginator->numbers(['separator' => '']) ?>
            <?= $this->Paginator->next(__('') . ' >', ['class' => 'next disabled']) ?>
    </div>

</div>

b2dade50   Prugniel   modifs Jeanne boo...
43
<!--
63c3cb16   epallier   Nombreux petits b...
44
<div class="actions">
b2dade50   Prugniel   modifs Jeanne boo...
45
46
			<php echo $this->element('menu') ?>
			<php
63c3cb16   epallier   Nombreux petits b...
47
48
49
50
51

echo $this->element('menu_index', [
    'pluralHumanName' => 'Utilisateurs',
    'singularHumanName' => 'Utilisateur'
])?>
b2dade50   Prugniel   modifs Jeanne boo...
52
53
		</div>
		-->