Blame view

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

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

	<?php echo '<h2><i class="icon-list"></i> Liste des types de documents</h2>'; ?>
    
    <?=$this->element('button_add'); ?>
    
b2dade50   Prugniel   modifs Jeanne boo...
8
    <table style="border-collapse: separate; border-spacing: 0; width: 270px;">
63c3cb16   epallier   Nombreux petits b...
9
10
11
12
13
14
15
16
17
18
19
20
		<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
21
22
            
            <tr>
63c3cb16   epallier   Nombreux petits b...
23
				<td class="actions" style="padding: 6px 0; text-align: left;">
9b4da83b   Alexandre   Version: 2.5.0.0
24
25
26
27
28
29
30
31
                    <?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...
32
				<td class="smallText"><?= $this->Html->link($typeDocument->nom, ['action' => 'view', $typeDocument->id]) ?></td>
0ea7290f   Alexandre   Version: 2.5.4.2
33
34


9b4da83b   Alexandre   Version: 2.5.0.0
35

63c3cb16   epallier   Nombreux petits b...
36
			</tr>
9b4da83b   Alexandre   Version: 2.5.0.0
37
            
63c3cb16   epallier   Nombreux petits b...
38
39
40
41
            <?php
                }
            endforeach
            ;
9b4da83b   Alexandre   Version: 2.5.0.0
42
43
            ?>
        </tbody>
63c3cb16   epallier   Nombreux petits b...
44
	</table>
9b4da83b   Alexandre   Version: 2.5.0.0
45

9478e982   Etienne Pallier   refactorisation d...
46
47
	<?php echo $this->element('pagination'); ?> 
    
9b4da83b   Alexandre   Version: 2.5.0.0
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' => 'Types Documents',
    'singularHumanName' => 'Type Document'
])?>
b2dade50   Prugniel   modifs Jeanne boo...
59
60
		</div>
-->