diff options
author | Stephen Beaver <sbeaver@netgate.com> | 2015-10-27 16:47:34 -0400 |
---|---|---|
committer | Stephen Beaver <sbeaver@netgate.com> | 2015-10-27 16:47:34 -0400 |
commit | db95c03bdc042275651006e92a1b8b8194e73654 (patch) | |
tree | 4df944ecb0085588e2c143ae934a2a84688b811d | |
parent | c238653ebac579969d449587eb04c27804454dc9 (diff) | |
parent | 8e990c6cbf6eb90edc8a28c49837807c389ff31c (diff) | |
download | pfsense-db95c03bdc042275651006e92a1b8b8194e73654.zip pfsense-db95c03bdc042275651006e92a1b8b8194e73654.tar.gz |
Merge pull request #1993 from heper/patch-2
-rw-r--r-- | src/usr/local/www/system_gateway_groups.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/usr/local/www/system_gateway_groups.php b/src/usr/local/www/system_gateway_groups.php index 7abe04c..8b1eae8 100644 --- a/src/usr/local/www/system_gateway_groups.php +++ b/src/usr/local/www/system_gateway_groups.php @@ -158,9 +158,9 @@ foreach ($a_gateway_groups as $gateway_group): <?=htmlspecialchars($gateway_group['descr'])?> </td> <td> - <a href="system_gateway_groups_edit.php?id=<?=$i?>" class="btn btn-xs btn-success"><?=gettext('Edit')?></a> - <a href="system_gateway_groups_edit.php?dup=<?=$i?>" class="btn btn-xs btn-info"><?=gettext('Duplicate')?></a> - <a href="system_gateway_groups.php?act=del&id=<?=$i?>" class="btn btn-xs btn-danger" ><?=gettext('Delete')?></a> + <a href="system_gateway_groups_edit.php?id=<?=$i?>" class="fa fa-pencil" title=<?=gettext('Edit')?>"></a> + <a href="system_gateway_groups_edit.php?dup=<?=$i?>" class="fa fa-clone" title="<?=gettext('Copy')?>"></a> + <a href="system_gateway_groups.php?act=del&id=<?=$i?>" class="fa fa-trash" title="<?=gettext('Delete')?>" onclick="return confirm('<?=gettext("Are you sure you want to delete this rule?")?>')"></a> </td> </tr> <?php @@ -180,4 +180,4 @@ endforeach; 'or policy-based routing.' . '<br />' . 'Without rules directing traffic into the Gateway Groups, they will not be used.')); -include("foot.inc");
\ No newline at end of file +include("foot.inc"); |