Blame view

src/Template/TypeDocuments/index.ctp 1.83 KB
9b4da83b   Alexandre   Version: 2.5.0.0
1
2
3

<div class="typeDocuments index">
<?php echo '<h2><i class="icon-list"></i> Liste des types de documents</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
12
13
14
15
16
		<thead>
			<tr>
				<th class="actions"><?= __('') ?></th>
				<th><?= $this->Paginator->sort('nom', 'Nom') ?></th>
			</tr>
		</thead>
		<tbody>
            <?php
            foreach ($typeDocuments as $typeDocument) :
                
                if ($typeDocument->nom != 'N/A') {
                    ?>
9b4da83b   Alexandre   Version: 2.5.0.0
17
18
            
            <tr>
63c3cb16   epallier   Nombreux petits b...
19
				<td class="actions" style="padding: 6px 0; text-align: left;">
9b4da83b   Alexandre   Version: 2.5.0.0
20
21
22
23
24
25
26
27
                    <?php if (in_array($role, ['Administration Plus', 'Super Administrateur'])) { ?>
                    <?= $this->Html->link(__('<i class="icon-pencil"></i>'), ['action' => 'edit', $typeDocument->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', $typeDocument->id], ['title' => 'Supprimer', 'style' => 'margin: 0 2px', 'escape' => false, 'confirm' => __('Êtes-vous sur de vouloir supprimer # {0}?', $typeDocument->id)]) ?>
               		<?php } ?>
                </td>
63c3cb16   epallier   Nombreux petits b...
28
				<td class="smallText"><?= $this->Html->link($typeDocument->nom, ['action' => 'view', $typeDocument->id]) ?></td>
0ea7290f   Alexandre   Version: 2.5.4.2
29
30


9b4da83b   Alexandre   Version: 2.5.0.0
31

63c3cb16   epallier   Nombreux petits b...
32
			</tr>
9b4da83b   Alexandre   Version: 2.5.0.0
33
            
63c3cb16   epallier   Nombreux petits b...
34
35
36
37
            <?php
                }
            endforeach
            ;
9b4da83b   Alexandre   Version: 2.5.0.0
38
39
            ?>
        </tbody>
63c3cb16   epallier   Nombreux petits b...
40
	</table>
9b4da83b   Alexandre   Version: 2.5.0.0
41

9478e982   Etienne Pallier   refactorisation d...
42
43
	<?php echo $this->element('pagination'); ?> 
    
9b4da83b   Alexandre   Version: 2.5.0.0
44
45
46
</div>


63c3cb16   epallier   Nombreux petits b...
47
<div class="actions">
9b4da83b   Alexandre   Version: 2.5.0.0
48
			<?php echo $this->element('menu') ?>
63c3cb16   epallier   Nombreux petits b...
49
50
51
52
53
54
			<?php

echo $this->element('menu_index', [
    'pluralHumanName' => 'Types Documents',
    'singularHumanName' => 'Type Document'
])?>
9b4da83b   Alexandre   Version: 2.5.0.0
55
		</div>