Blame view

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

<div class="fournisseurs index">
<?php echo '<h2><i class="icon-list"></i> Liste des Fournisseurs</h2>'; ?>
    <table cellpadding="0" cellspacing="0">
63c3cb16   epallier   Nombreux petits b...
5
6
7
8
9
10
11
12
		<thead>
			<tr>
				<th class="actions"><?= __('') ?></th>
				<th><?= $this->Paginator->sort('nom', 'Nom') ?></th>
			</tr>
		</thead>
		<tbody>
            <?php
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
13
            
63c3cb16   epallier   Nombreux petits b...
14
15
16
17
foreach ($fournisseurs as $fournisseur) :
                
                if ($fournisseur->id != 9) {
                    ?>
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
18
19
20
            
            
            <tr>
63c3cb16   epallier   Nombreux petits b...
21
				<td class="actions" style="padding: 6px 0; text-align: left;">             
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
22
23
24
25
26
                    <?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'])) { ?>
5b54a286   mimelhaine   Version master pe...
27
                    <?= $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...
28
29
                	<?php } ?>
                </td>
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
30

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

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

4c5cecae   Etienne Pallier   - bugfix db updat...
43
44
	<?php echo $this->element('pagination_with_first_and_last'); ?> 
        
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
45
46
</div>

63c3cb16   epallier   Nombreux petits b...
47
<div class="actions">
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
48
			<?php echo $this->element('menu') ?>
63c3cb16   epallier   Nombreux petits b...
49
50
51
52
53
54
			<?php

echo $this->element('menu_index', [
    'pluralHumanName' => 'Fournisseurs',
    'singularHumanName' => 'Fournisseur'
])?>
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
55
		</div>