view.ctp
1008 Bytes
<div class="typeSuivis view">
<h2>Détail du type de suivi</h2>
<table style="margin-bottom: 30px;">
<tr><th style="width: 250px;"></th><th></th></tr>
<?php
echo $this->Html->link(__('<i class="icon-pencil"></i> Editer ce type de suivi'),
['action' => 'edit', $typeSuivi->id],
['escape' => false,'onclick' => 'return true;']
);
echo $this->Form->postLink(__('<i class="icon-trash"></i> Supprimer ce type de suivi'),
['action' => 'delete', $typeSuivi->id],
['style'=>'margin-left: 110px', 'escape' => false, 'confirm' => __('Êtes-vous sur de vouloir supprimer # {0}?', $typeSuivi->id)]
);
$displayElement(__('Nom'), h($typeSuivi->nom));
?>
</table>
</div>
<div class="actions">
<?php echo $this->element('menu') ?>
<?php echo $this->element('menu_view',
[ 'pluralHumanName' => 'Types Suivis',
'singularHumanName' => 'Type Suivi',
'lien' => $typeSuivi->id ]) ?>
</div>