Commit 7f14164ee1143b259114672ad8a251f9654834c7
1 parent
b7a37210
Exists in
master
and in
3 other branches
Modification message suppression
Modification du message affiché à la suppression d'un utilisateur depuis l'index
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
src/Template/Users/index.ctp
@@ -19,7 +19,7 @@ | @@ -19,7 +19,7 @@ | ||
19 | <td class="actions" style="padding: 6px 0; text-align: left;"> | 19 | <td class="actions" style="padding: 6px 0; text-align: left;"> |
20 | <?php if($role == 'Super Administrateur') { ?> | 20 | <?php if($role == 'Super Administrateur') { ?> |
21 | <?= $this->Html->link(__('<i class="icon-pencil"></i>'), ['action' => 'edit', $user->id], ['title' => 'Editer', 'style' => 'margin: 0 2px', 'escape' => false ]) ?> | 21 | <?= $this->Html->link(__('<i class="icon-pencil"></i>'), ['action' => 'edit', $user->id], ['title' => 'Editer', 'style' => 'margin: 0 2px', 'escape' => false ]) ?> |
22 | - <?= $this->Form->postLink(__('<i class="icon-trash"></i>'), ['action' => 'delete', $user->id], ['title' => 'Supprimer', 'style' => 'margin: 0 2px', 'escape' => false, 'confirm' => __('Êtes-vous sur de vouloir supprimer # {0}?', $user->id)]) ?> | 22 | + <?= $this->Form->postLink(__('<i class="icon-trash"></i>'), ['action' => 'delete', $user->id], ['title' => 'Supprimer', 'style' => 'margin: 0 2px', 'escape' => false, 'confirm' => __('Êtes-vous sur de vouloir supprimer l\'utilisateur {0} ?', $user->nom)]) ?> |
23 | <?php } ?> | 23 | <?php } ?> |
24 | </td> | 24 | </td> |
25 | <td class="smallText"><?= $this->Html->link($user->nom, ['action' => 'view', $user->id]) ?></td> | 25 | <td class="smallText"><?= $this->Html->link($user->nom, ['action' => 'view', $user->id]) ?></td> |