diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/usr/local/www/interfaces_groups.php | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/usr/local/www/interfaces_groups.php b/src/usr/local/www/interfaces_groups.php index 2550d97..b5034fa 100644 --- a/src/usr/local/www/interfaces_groups.php +++ b/src/usr/local/www/interfaces_groups.php @@ -146,12 +146,8 @@ print_info_box(gettext('Interface Groups allow you to setup rules for multiple i <?=htmlspecialchars($ifgroupentry['descr']);?> </td> <td> - <a class="btn btn-default btn-sm" role="button" href="interfaces_groups_edit.php?id=<?=$i; ?>"> - <?=gettext('Edit'); ?> - </a> - <a class="btn btn-danger btn-sm" role="button" href="interfaces_groups.php?act=del&id=<?=$i; ?>"> - <?=gettext("Delete"); ?> - </a> + <a class="fa fa-pencil" title="<?=gettext('Edit group')?>" href="interfaces_groups_edit.php?id=<?=$i; ?>"></a> + <a class="fa fa-trash" title="<?=gettext('Delete group')?>" href="interfaces_groups.php?act=del&id=<?=$i; ?>" onclick="return confirm('<?=gettext("Are you sure you want to delete this group?")?>')"></a> </td> </tr> <?php endforeach; ?> @@ -167,4 +163,4 @@ print_info_box(gettext('Interface Groups allow you to setup rules for multiple i <?php -include("fend.inc");
\ No newline at end of file +include("fend.inc"); |