index.ctp 1.39 KB

<div class="suivis index">
<?php echo '<h2><i class="icon-list"></i> Liste des fiches metrologiques ('.$nbFichemetrologique.')</h2>'; ?>
    <table cellpadding="0" cellspacing="0">
        <thead>
            <tr>
            	
                <th><?= $this->Paginator->sort('id', 'N°') ?></th>
                <th><?= $this->Paginator->sort('suivi_id', 'Suivi') ?></th>
				<th><?= $this->Paginator->sort('Materiel n°') ?></th>
                
            </tr>
        </thead>
        <tbody>
            <?php foreach ($fichemetrologiques as $fichemetrologique): ?>
            <tr>
                
                <td class="smallText"><?php echo $this->Html->link('Fiche metrologique '.$this->Number->format($fichemetrologique->id), ['action' => 'view', $fichemetrologique->id])?></td>
                <td class="smallText"><?= $this->Html->link($fichemetrologique->suivi->commentaire, ['controller' => 'Fichemetrologiques', 'action' => 'view', $fichemetrologique->suivi_id])  ?></td>
                <td class="smallText"><?= $this->Html->link($fichemetrologique->suivi->materiel_id, ['controller' => 'Materiels', 'action' => 'view', $fichemetrologique->suivi->materiel_id])  ?></td>
                
				</tr>
            <?php endforeach; ?>
        </tbody>
    </table>
    
	<?php echo $this->element('pagination'); ?> 
    
</div>

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