index.ctp 2.06 KB

<div class="typeSuivis index">

	<?php echo '<h2><i class="icon-list"></i> Liste des types de suivis</h2>'; ?>

	<?=$this->element('button_add'); ?>

    <table style="border-collapse: separate; border-spacing: 0;">
    
		<thead>
			<tr>
				<th class="actions"><?= __('') ?></th>
				<th><?= $this->Paginator->sort('nom', 'Nom') ?></th>
				<th><?= $this->Paginator->sort('is_regular', 'Régulier ?') ?></th>
				<th><?= $this->Paginator->sort('is_metro', 'Métrologie ?') ?></th>
			</tr>
		</thead>
	
		<tbody>
		
            <?php foreach ($typeSuivis as $typeSuivi): ?>
            <tr>

				<!-- boutons edit et delete -->            
				<td class="actions" style="padding: 6px 0; text-align: left;">
				
                    <?php if (in_array($role, ['Administration Plus', 'Super Administrateur'])) { ?>
                    <?= $this->Html->link(__('<i class="icon-pencil"></i>'), ['action' => 'edit', $typeSuivi->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', $typeSuivi->id], ['title' => 'Supprimer', 'style' => 'margin: 0 2px', 'escape' => false, 'confirm' => __('Êtes-vous sur de vouloir supprimer # {0}?', $typeSuivi->id)]) ?>
               		<?php } ?>
                
                </td>
                
                <!-- data -->
				<td class="smallText"><?= $this->Html->link($typeSuivi->nom, ['action' => 'view', $typeSuivi->id]) ?></td>
				<td class="smallText"><?= $typeSuivi->is_regular?"Oui":"Non" ?></td>
				<td class="smallText"><?= $typeSuivi->is_metro?"Oui":"Non" ?></td>

			</tr>
            <?php endforeach; ?>
        </tbody>
	</table>

	<?php echo $this->element('pagination'); ?> 
    
</div>

<!--
<div class="actions">
			<php echo $this->element('menu') ?>
			<php

echo $this->element('menu_index', [
    'pluralHumanName' => 'Types suivis',
    'singularHumanName' => 'Type suivi'
])?>
		</div>
-->