Blame view

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

<div class="unites index">
8dff32eb   Etienne Pallier   Premiers bugfixes...
3
4
5
6
7

	<?php echo '<h2><i class="icon-list"></i> Liste des Unites</h2>'; ?>
    
    <?=$this->element('button_add'); ?>
    
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
8
    <table cellpadding="0" cellspacing="0">
63c3cb16   epallier   Nombreux petits b...
9
10
11
12
13
14
15
16
17
		<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...
18
            
63c3cb16   epallier   Nombreux petits b...
19
20
21
22
foreach ($unites as $unite) :
                
                if ($unite->id != 9) {
                    ?>
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
23
24
25
            
            
            <tr>
63c3cb16   epallier   Nombreux petits b...
26
				<td class="actions" style="padding: 6px 0; text-align: left;">             
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
27
28
29
30
31
32
33
34
                    <?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...
35
36

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

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

63c3cb16   epallier   Nombreux petits b...
40
41
42
43
44
45
46
			</tr>
            <?php
                
}
            endforeach
            ;
            ?>
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
47
        </tbody>
63c3cb16   epallier   Nombreux petits b...
48
	</table>
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
49

9478e982   Etienne Pallier   refactorisation d...
50
51
	<?php echo $this->element('pagination'); ?> 
    
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
52
53
</div>

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

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