Blame view

src/Template/Organismes/index.ctp 2.03 KB
64fba1a2   Alexandre   Base du projet : ...
1

96b028a1   Alexandre   Migration de tout...
2
3
<div class="organismes index">
<?php echo '<h2><i class="icon-list"></i> Liste des organismes</h2>'; ?>
6c4edfa3   Alexandre   First Commit LabI...
4
5
6
    <table cellpadding="0" cellspacing="0">
        <thead>
            <tr>
0ea7290f   Alexandre   Version: 2.5.4.2
7
             	<th class="actions"><?= __('') ?></th>
96b028a1   Alexandre   Migration de tout...
8
                <th><?= $this->Paginator->sort('nom', 'Nom') ?></th>
0ea7290f   Alexandre   Version: 2.5.4.2
9
               
6c4edfa3   Alexandre   First Commit LabI...
10
11
12
13
14
            </tr>
        </thead>
        <tbody>
            <?php foreach ($organismes as $organisme): ?>
            <tr>
0ea7290f   Alexandre   Version: 2.5.4.2
15
                <td class="actions" style="padding: 6px 0; text-align: left;">
08d8dbb0   Alexandre   Version: 2.4.2.14
16
                    <?php if (in_array($role, ['Administration Plus', 'Super Administrateur'])) { ?>
96b028a1   Alexandre   Migration de tout...
17
                    <?= $this->Html->link(__('<i class="icon-pencil"></i>'), ['action' => 'edit', $organisme->id], ['title' => 'Editer', 'style' => 'margin: 0 2px', 'escape' => false ]) ?>
9fc6b8a2   Alexandre   Version: 2.4.2.6
18
19
20
                    <?php } ?>
                    
                    <?php if (in_array($role, ['Super Administrateur'])) { ?>
96b028a1   Alexandre   Migration de tout...
21
                    <?= $this->Form->postLink(__('<i class="icon-trash"></i>'), ['action' => 'delete', $organisme->id], ['title' => 'Supprimer', 'style' => 'margin: 0 2px', 'escape' => false, 'confirm' => __('Êtes-vous sur de vouloir supprimer # {0}?', $organisme->id)]) ?>
9fc6b8a2   Alexandre   Version: 2.4.2.6
22
                	<?php } ?>
6c4edfa3   Alexandre   First Commit LabI...
23
                </td>
0ea7290f   Alexandre   Version: 2.5.4.2
24
25
26
27
            
                <td class="smallText"><?= $this->Html->link($organisme->nom, ['action' => 'view', $organisme->id]) ?></td>


96b028a1   Alexandre   Migration de tout...
28

6c4edfa3   Alexandre   First Commit LabI...
29
30
31
32
            </tr>
            <?php endforeach; ?>
        </tbody>
    </table>
96b028a1   Alexandre   Migration de tout...
33

4260780b   Alexandre   Migration vue, co...
34
    <p><?= $this->Paginator->counter(['format' => 'Page {{page}} sur {{pages}}']) ?></p>
96b028a1   Alexandre   Migration de tout...
35
36
37
38
39
      	
   	<div class="paging">
            <?= $this->Paginator->prev('< ' . __(''), ['class' => 'prev disabled']) ?>
            <?= $this->Paginator->numbers(['separator' => '']) ?>
            <?= $this->Paginator->next(__('') . ' >', ['class' => 'next disabled']) ?>
6c4edfa3   Alexandre   First Commit LabI...
40
    </div>
96b028a1   Alexandre   Migration de tout...
41

6c4edfa3   Alexandre   First Commit LabI...
42
</div>
4260780b   Alexandre   Migration vue, co...
43
44
45
46
47
48
49

    	<div class="actions">
			<?php echo $this->element('menu') ?>
			<?php echo $this->element('menu_index', 
			[ 'pluralHumanName' => 'Organismes',
			'singularHumanName' => 'Organisme' ]) ?>
		</div>