Commit e9c093482dad71fcec4e8c46149acf51bcd11144
1 parent
7927a70d
Exists in
master
and in
3 other branches
Modification message suppression
modfication du message affiché lors de la suppression d'un suivi depuis l'index
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
src/Template/Suivis/index.ctp
... | ... | @@ -31,7 +31,7 @@ if (($role == 'Utilisateur' && in_array($username, [ |
31 | 31 | ])) || ($role == 'Responsable' && ((isset($priviledgedUser->groupes_metier_id) && $priviledgedUser->groupes_metier_id != $idGmNa && $suivi->groupes_metier_id == $priviledgedUser->groupes_metier_id) || (isset($priviledgedUser->groupe_thematique_id) && $priviledgedUser->groupe_thematique_id != $idGtNa && $suivi->groupes_thematique_id == $priviledgedUser->groupe_thematique_id)))) { |
32 | 32 | ?> |
33 | 33 | <?= $this->Html->link(__('<i class="icon-pencil"></i>'), ['action' => 'edit', $suivi->id], ['title' => 'Editer', 'style' => 'margin: 0 2px', 'escape' => false ]) ?> |
34 | - <?= $this->Form->postLink(__('<i class="icon-trash"></i>'), ['action' => 'delete', $suivi->id], ['title' => 'Supprimer', 'style' => 'margin: 0 2px', 'escape' => false, 'confirm' => __('Êtes-vous sur de vouloir supprimer # {0}?', $suivi->id)]) ?> | |
34 | + <?= $this->Form->postLink(__('<i class="icon-trash"></i>'), ['action' => 'delete', $suivi->id], ['title' => 'Supprimer', 'style' => 'margin: 0 2px', 'escape' => false, 'confirm' => __('Êtes-vous sur de vouloir supprimer ce suivi ?')]) ?> | |
35 | 35 | <?php } ?> |
36 | 36 | </td> |
37 | 37 | <td class="smallText"><?php echo $this->Html->link('Suivi '.$this->Number->format($suivi->id), ['action' => 'view', $suivi->id])?></td> | ... | ... |