mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
system_routes action button titles
This commit is contained in:
parent
7e0391ebb9
commit
4bfdf0be23
@ -303,19 +303,19 @@ foreach ($a_routes as $i => $route):
|
||||
<?=htmlspecialchars($route['descr'])?>
|
||||
</td>
|
||||
<td>
|
||||
<a href="system_routes_edit.php?id=<?=$i?>" class="fa fa-pencil" title="<?=gettext('Edit')?>"></a>
|
||||
<a href="system_routes_edit.php?id=<?=$i?>" class="fa fa-pencil" title="<?=gettext('Edit route')?>"></a>
|
||||
|
||||
<a href="system_routes_edit.php?dup=<?=$i?>" class="fa fa-clone" title="<?=gettext('Copy')?>"></a>
|
||||
<a href="system_routes_edit.php?dup=<?=$i?>" class="fa fa-clone" title="<?=gettext('Copy route')?>"></a>
|
||||
|
||||
<?php if (isset($route['disabled'])) {
|
||||
?>
|
||||
<a href="?act=toggle&id=<?=$i?>" class="fa fa-check-square-o" title="<?=gettext('Enable')?>"></a>
|
||||
<a href="?act=toggle&id=<?=$i?>" class="fa fa-check-square-o" title="<?=gettext('Enable route')?>"></a>
|
||||
<?php } else {
|
||||
?>
|
||||
<a href="?act=toggle&id=<?=$i?>" class="fa fa-ban" title="<?=gettext('Disable')?>"></a>
|
||||
<a href="?act=toggle&id=<?=$i?>" class="fa fa-ban" title="<?=gettext('Disable route')?>"></a>
|
||||
<?php }
|
||||
?>
|
||||
<a href="system_routes.php?act=del&id=<?=$i?>" class="fa fa-trash" title="<?=gettext('Delete')?>"></a>
|
||||
<a href="system_routes.php?act=del&id=<?=$i?>" class="fa fa-trash" title="<?=gettext('Delete route')?>"></a>
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user