index.ctp
1.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<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>
<p><?= $this->Paginator->counter(['format' => 'Page {{page}} sur {{pages}}']) ?></p>
<div class="paging">
<?= $this->Paginator->prev('< ' . __(''), ['class' => 'prev disabled']) ?>
<?= $this->Paginator->numbers(['separator' => '']) ?>
<?= $this->Paginator->next(__('') . ' >', ['class' => 'next disabled']) ?>
</div>
</div>
<div class="actions">
<?php echo $this->element('menu') ?>
</div>