diff options
author | heper <heper@users.noreply.github.com> | 2015-11-02 15:47:30 +0100 |
---|---|---|
committer | heper <heper@users.noreply.github.com> | 2015-11-02 15:47:30 +0100 |
commit | 32db6a53a65f34e0e01f213ea6ecf9d1112b3b9d (patch) | |
tree | 064e62d301a0058f75f52f83a06105613399677a /src | |
parent | 0c499bef7ff435ee9b6a6bff0b005e0e94d87834 (diff) | |
download | pfsense-32db6a53a65f34e0e01f213ea6ecf9d1112b3b9d.zip pfsense-32db6a53a65f34e0e01f213ea6ecf9d1112b3b9d.tar.gz |
convert interfaces_groups to fa
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"); |