view.ctp
1009 Bytes
<div class="documents view large-9 medium-8 columns content">
<h3><?= h($document->id) ?></h3>
<table class="vertical-table">
<tr>
<th><?= __('Type Doc') ?></th>
<td><?= h($document->type_doc) ?></td>
</tr>
<tr>
<th><?= __('Chemin') ?></th>
<td><?= h($document->chemin) ?></td>
</tr>
<tr>
<th><?= __('Materiel') ?></th>
<td><?= $document->has('materiel') ? $this->Html->link($document->materiel->id, ['controller' => 'Materiels', 'action' => 'view', $document->materiel->id]) : '' ?></td>
</tr>
<tr>
<th><?= __('Suivi') ?></th>
<td><?= $document->has('suivi') ? $this->Html->link($document->suivi->id, ['controller' => 'Suivis', 'action' => 'view', $document->suivi->id]) : '' ?></td>
</tr>
<tr>
<th><?= __('Id') ?></th>
<td><?= $this->Number->format($document->id) ?></td>
</tr>
</table>
</div>