Blame view

src/Template/Fournisseurs/index.ctp 1.92 KB
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
1
2

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

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

63c3cb16   epallier   Nombreux petits b...
35
36
37
38
39
40
41
42
43
				<td class="smallText"><?= $this->Html->link($fournisseur->nom, ['action' => 'view', $fournisseur->id]) ?></td>

			</tr>
            <?php
                
}
            endforeach
            ;
            ?>
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
44
        </tbody>
63c3cb16   epallier   Nombreux petits b...
45
	</table>
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
46

4c5cecae   Etienne Pallier   - bugfix db updat...
47
48
	<?php echo $this->element('pagination_with_first_and_last'); ?> 
        
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
49
50
</div>

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

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