Blame view

src/Template/Fichemetrologiques/index.ctp 1.24 KB
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
1
2
3
4

<div class="suivis index">
<?php echo '<h2><i class="icon-list"></i> Liste des fiches metrologiques ('.$nbFichemetrologique.')</h2>'; ?>
    <table cellpadding="0" cellspacing="0">
63c3cb16   epallier   Nombreux petits b...
5
6
7
8
9
		<thead>
			<tr>

				<th><?= $this->Paginator->sort('id', 'N°') ?></th>
				<th><?= $this->Paginator->sort('suivi_id', 'Suivi') ?></th>
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
10
				<th><?= $this->Paginator->sort('Materiel n°') ?></th>
63c3cb16   epallier   Nombreux petits b...
11
12
13
14

			</tr>
		</thead>
		<tbody>
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
15
16
            <?php foreach ($fichemetrologiques as $fichemetrologique): ?>
            <tr>
63c3cb16   epallier   Nombreux petits b...
17
18
19
20
21
22

				<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>
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
23
24
            <?php endforeach; ?>
        </tbody>
63c3cb16   epallier   Nombreux petits b...
25
	</table>
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
26
    
9478e982   Etienne Pallier   refactorisation d...
27
	<?php echo $this->element('pagination'); ?> 
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
28
29
30
    
</div>

b2dade50   Prugniel   modifs Jeanne boo...
31
<!--
63c3cb16   epallier   Nombreux petits b...
32
<div class="actions">
b2dade50   Prugniel   modifs Jeanne boo...
33
34
35
			<php echo $this->element('menu') ?>
		</div>
-->