Blame view

src/Template/SurCategories/index.ctp 1.63 KB
64fba1a2   Alexandre   Base du projet : ...
1

96b028a1   Alexandre   Migration de tout...
2
3
<div class="surCategories index">
<?php echo '<h2><i class="icon-list"></i> Liste des domaines</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', 'Nom') ?></th>
			</tr>
		</thead>
		<tbody>
6c4edfa3   Alexandre   First Commit LabI...
12
13
            <?php foreach ($surCategories as $surCategory): ?>
            <tr>
63c3cb16   epallier   Nombreux petits b...
14
				<td class="actions" style="padding: 6px 0; text-align: left;">        
08d8dbb0   Alexandre   Version: 2.4.2.14
15
                    <?php if (in_array($role, ['Administration Plus', 'Super Administrateur'])) { ?>
96b028a1   Alexandre   Migration de tout...
16
                    <?= $this->Html->link(__('<i class="icon-pencil"></i>'), ['action' => 'edit', $surCategory->id], ['title' => 'Editer', 'style' => 'margin: 0 2px', 'escape' => false ]) ?>
9fc6b8a2   Alexandre   Version: 2.4.2.6
17
18
19
                    <?php } ?>
                    
                    <?php if (in_array($role, ['Super Administrateur'])) { ?>
96b028a1   Alexandre   Migration de tout...
20
                    <?= $this->Form->postLink(__('<i class="icon-trash"></i>'), ['action' => 'delete', $surCategory->id], ['title' => 'Supprimer', 'style' => 'margin: 0 2px', 'escape' => false, 'confirm' => __('Êtes-vous sur de vouloir supprimer # {0}?', $surCategory->id)]) ?>
9fc6b8a2   Alexandre   Version: 2.4.2.6
21
                	<?php } ?>
6c4edfa3   Alexandre   First Commit LabI...
22
                </td>
63c3cb16   epallier   Nombreux petits b...
23
				<td class="smallText"><?= $this->Html->link($surCategory->nom, ['action' => 'view', $surCategory->id]) ?></td>
0ea7290f   Alexandre   Version: 2.5.4.2
24
25


63c3cb16   epallier   Nombreux petits b...
26
			</tr>
6c4edfa3   Alexandre   First Commit LabI...
27
28
            <?php endforeach; ?>
        </tbody>
63c3cb16   epallier   Nombreux petits b...
29
	</table>
96b028a1   Alexandre   Migration de tout...
30

9478e982   Etienne Pallier   refactorisation d...
31
32
	<?php echo $this->element('pagination'); ?> 
    
6c4edfa3   Alexandre   First Commit LabI...
33
</div>
4260780b   Alexandre   Migration vue, co...
34
35


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

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