view.ctp
1.14 KB
<div class="groupesThematiques view">
<h2>Détail groupes thématique</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 groupe thématique'),
['action' => 'edit', $groupesThematique->id],
['escape' => false,'onclick' => 'return true;']
);
echo $this->Form->postLink(__('<i class="icon-trash"></i> Supprimer ce groupe thématique'),
['action' => 'delete', $groupesThematique->id],
['style'=>'margin-left: 110px', 'escape' => false, 'confirm' => __('Êtes-vous sur de vouloir supprimer # {0}?', $groupesThematique->id)]
);
$displayElement(__('Nom'), h($groupesThematique->nom));
$displayElement(__('Description'), h($groupesThematique->description));
?>
</table>
</div>
<div class="actions">
<?php echo $this->element('menu') ?>
<?php echo $this->element('menu_view',
[ 'pluralHumanName' => 'Groupes Thématiques',
'singularHumanName' => 'Groupe Thématique',
'lien' => $groupesThematique->id ]) ?>
</div>