Blame view

src/Template/GroupesMetiers/index.ctp 2.41 KB
64fba1a2   Alexandre   Base du projet : ...
1

96b028a1   Alexandre   Migration de tout...
2
<div class="groupesMetiers index">
e3633c13   Alexandre   Version: 2.4.2.23
3
<?php echo '<h2><i class="icon-list"></i> Liste des '.$configuration->nom_groupe_metier.'</h2>'; ?>
d653b27f   Thibaud Ajas   Correction de fau...
4
    <table style="border-collapse: separate; border-spacing: 0;">
6c4edfa3   Alexandre   First Commit LabI...
5
6
        <thead>
            <tr>
0ea7290f   Alexandre   Version: 2.5.4.2
7
            	<th class="actions"><?= __('') ?></th>
96b028a1   Alexandre   Migration de tout...
8
9
                <th><?= $this->Paginator->sort('nom', 'Nom') ?></th>
                <th><?= $this->Paginator->sort('description', 'Description') ?></th>
0ea7290f   Alexandre   Version: 2.5.4.2
10
                
6c4edfa3   Alexandre   First Commit LabI...
11
12
13
            </tr>
        </thead>
        <tbody>
aca4ed9b   Alexandre   Version: 2.5.4.0
14
15
16
            <?php foreach ($groupesMetiers as $groupesMetier):
            if($groupesMetier->nom != 'N/A') {
            ?>
6c4edfa3   Alexandre   First Commit LabI...
17
            <tr>
0ea7290f   Alexandre   Version: 2.5.4.2
18
            
602e9d7a   Alexandre   Version: 2.5.5.0
19
                <td class="actions" style="padding: 6px 0; text-align: left;">         
08d8dbb0   Alexandre   Version: 2.4.2.14
20
                    <?php if (in_array($role, ['Administration Plus', 'Super Administrateur'])) { ?>
96b028a1   Alexandre   Migration de tout...
21
                    <?= $this->Html->link(__('<i class="icon-pencil"></i>'), ['action' => 'edit', $groupesMetier->id], ['title' => 'Editer', 'style' => 'margin: 0 2px', 'escape' => false ]) ?>
9fc6b8a2   Alexandre   Version: 2.4.2.6
22
23
24
                    <?php } ?>
                    
                    <?php if (in_array($role, ['Super Administrateur'])) { ?>
96b028a1   Alexandre   Migration de tout...
25
                    <?= $this->Form->postLink(__('<i class="icon-trash"></i>'), ['action' => 'delete', $groupesMetier->id], ['title' => 'Supprimer', 'style' => 'margin: 0 2px', 'escape' => false, 'confirm' => __('Êtes-vous sur de vouloir supprimer # {0}?', $groupesMetier->id)]) ?>
9fc6b8a2   Alexandre   Version: 2.4.2.6
26
                	<?php } ?>
6c4edfa3   Alexandre   First Commit LabI...
27
                </td>
0ea7290f   Alexandre   Version: 2.5.4.2
28
29
30
31
                <td class="smallText"><?= $this->Html->link($groupesMetier->nom, ['action' => 'view', $groupesMetier->id]) ?></td>
                <td class="smallText"><?= h($groupesMetier->description) ?></td>


96b028a1   Alexandre   Migration de tout...
32

6c4edfa3   Alexandre   First Commit LabI...
33
            </tr>
aca4ed9b   Alexandre   Version: 2.5.4.0
34
35
36
            <?php 
            }
            endforeach; ?>
6c4edfa3   Alexandre   First Commit LabI...
37
38
        </tbody>
    </table>
96b028a1   Alexandre   Migration de tout...
39

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

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

    	<div class="actions">
			<?php echo $this->element('menu') ?>
			<?php echo $this->element('menu_index', 
e3633c13   Alexandre   Version: 2.4.2.23
53
54
			[ 'pluralHumanName' => $configuration->nom_groupe_metier.'s',
			'singularHumanName' => $configuration->nom_groupe_metier ]) ?>
4260780b   Alexandre   Migration vue, co...
55
56
		</div>