Commit 57fd365df0788db9199c5a846e5bc0af55ca781a
1 parent
fc1d1e82
change request to massage
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
src/app/frontend/views/standard_email/index.php
... | ... | @@ -16,8 +16,8 @@ |
16 | 16 | <td><?=$item->id; ?></td> |
17 | 17 | <td><?= $item->name; ?></td> |
18 | 18 | <td> |
19 | - <a href="<?= $this->url->get([ 'for' => 'standard_email_delete', "id"=>$item->id ]) ?>" class="action-img"><img src="/images/del.png" title="удалить"></a> | |
20 | - <a href="<?= $this->url->get([ 'for' => 'standard_email_update', "id"=>$item->id ]) ?>" class="action-img"><img src="/images/change.png" title="редактировать"></a> | |
19 | + <a href="<?= $this->url->get([ 'for' => 'standard_email_delete', "id"=>$item->id ]) ?>" class="action-img delete_icon" onclick="return confirm('Вы действительно хотите удалить пункт?')" title="Удалить"></a> | |
20 | + <a href="<?= $this->url->get([ 'for' => 'standard_email_update', "id"=>$item->id ]) ?>" class="action-img edit-icon" title="Редактировать"></a> | |
21 | 21 | </td> |
22 | 22 | </tr> |
23 | 23 | <?php endforeach; ?> | ... | ... |