Commit ba0ec11cd7273bcbaf99cdb9e0c20beeb91e6aca

Authored by Malik Imelhaine
1 parent 1596fc70

Modification message suppression

Modification du message affiché sur l'index des documents
Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
src/Template/Documents/index.ctp
@@ -43,7 +43,7 @@ foreach ($documents as $document) : @@ -43,7 +43,7 @@ foreach ($documents as $document) :
43 ?> 43 ?>
44 <?= $this->Html->link(__('<i class="icon-pencil"></i>'), ['action' => 'edit', $document->id], ['title' => 'Editer', 'style' => 'margin: 0 2px', 'escape' => false]) ?> 44 <?= $this->Html->link(__('<i class="icon-pencil"></i>'), ['action' => 'edit', $document->id], ['title' => 'Editer', 'style' => 'margin: 0 2px', 'escape' => false]) ?>
45 45
46 - <?= $this->Form->postLink(__('<i class="icon-trash"></i>'), ['action' => 'delete', $document->id], ['title' => 'Supprimer', 'style' => 'margin: 0 2px', 'escape' => false, 'confirm' => __('Êtes-vous sur de vouloir supprimer # {0}?', $document->id)]) ?> 46 + <?= $this->Form->postLink(__('<i class="icon-trash"></i>'), ['action' => 'delete', $document->id], ['title' => 'Supprimer', 'style' => 'margin: 0 2px', 'escape' => false, 'confirm' => __('Êtes-vous sur de vouloir supprimer {0} ?', $document->nom)]) ?>
47 </td> 47 </td>
48 48
49 <td class="smallText"><?= $this->Html->link($document->nom, ['action' => 'view', $document->id]) ?></td> 49 <td class="smallText"><?= $this->Html->link($document->nom, ['action' => 'view', $document->id]) ?></td>