Blame view

src/Template/Unites/index.ctp 1.88 KB
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
1
2
3
4

<div class="unites index">
<?php echo '<h2><i class="icon-list"></i> Liste des Unites</h2>'; ?>
    <table cellpadding="0" cellspacing="0">
63c3cb16   epallier   Nombreux petits b...
5
6
7
8
9
10
11
12
13
		<thead>
			<tr>
				<th class="actions"><?= __('') ?></th>
				<th><?= $this->Paginator->sort('nom', 'Nom') ?></th>
				<th><?= $this->Paginator->sort('symbole', 'Symbole') ?></th>
			</tr>
		</thead>
		<tbody>
            <?php
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
14
            
63c3cb16   epallier   Nombreux petits b...
15
16
17
18
foreach ($unites as $unite) :
                
                if ($unite->id != 9) {
                    ?>
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
19
20
21
            
            
            <tr>
63c3cb16   epallier   Nombreux petits b...
22
				<td class="actions" style="padding: 6px 0; text-align: left;">             
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
23
24
25
26
27
28
29
30
                    <?php if (in_array($role, ['Administration Plus', 'Super Administrateur'])) { ?>
                    <?= $this->Html->link(__('<i class="icon-pencil"></i>'), ['action' => 'edit', $unite->id], ['title' => 'Editer', 'style' => 'margin: 0 2px', 'escape' => false ]) ?>
                    <?php } ?>
                    
                    <?php if (in_array($role, ['Super Administrateur'])) { ?>
                    <?= $this->Form->postLink(__('<i class="icon-trash"></i>'), ['action' => 'delete', $unite->id], ['title' => 'Supprimer', 'style' => 'margin: 0 2px', 'escape' => false, 'confirm' => __('Êtes-vous sur de vouloir supprimer # {0}?', $unite->id)]) ?>
                	<?php } ?>
                </td>
63c3cb16   epallier   Nombreux petits b...
31
32

				<td class="smallText"><?= $this->Html->link($unite->nom, ['action' => 'view', $unite->id]) ?></td>
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
33
34
35

				<td class="smallText"><?= $this->Html->div('',$unite->symbole) ?></td>

63c3cb16   epallier   Nombreux petits b...
36
37
38
39
40
41
42
			</tr>
            <?php
                
}
            endforeach
            ;
            ?>
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
43
        </tbody>
63c3cb16   epallier   Nombreux petits b...
44
	</table>
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
45

9478e982   Etienne Pallier   refactorisation d...
46
47
	<?php echo $this->element('pagination'); ?> 
    
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
48
49
</div>

b2dade50   Prugniel   modifs Jeanne boo...
50
<!--
63c3cb16   epallier   Nombreux petits b...
51
<div class="actions">
b2dade50   Prugniel   modifs Jeanne boo...
52
53
			<php echo $this->element('menu') ?>
			<php
63c3cb16   epallier   Nombreux petits b...
54
55
56
57
58

echo $this->element('menu_index', [
    'pluralHumanName' => 'Unites',
    'singularHumanName' => 'Unite'
])?>
b2dade50   Prugniel   modifs Jeanne boo...
59
60
		</div>
        -->