summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/firewall_aliases.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/usr/local/www/firewall_aliases.php')
-rw-r--r--src/usr/local/www/firewall_aliases.php34
1 files changed, 21 insertions, 13 deletions
diff --git a/src/usr/local/www/firewall_aliases.php b/src/usr/local/www/firewall_aliases.php
index 8fae094..5461708 100644
--- a/src/usr/local/www/firewall_aliases.php
+++ b/src/usr/local/www/firewall_aliases.php
@@ -269,28 +269,36 @@ display_top_tabs($tab_array);
<td>
<a class="fa fa-pencil" title="<?=gettext("Edit alias"); ?>" href="firewall_aliases_edit.php?id=<?=$i?>"></a>
<a class="fa fa-trash" title="<?=gettext("Delete alias")?>" href="?act=del&amp;tab=<?=$tab?>&amp;id=<?=$i?>" onclick="return confirm('<?=gettext("Are you sure you want to delete this alias?")?>')"></a>
- </td>
- </tr>
+ </td>
+ </tr>
<?php endif?>
<?php endforeach?>
</tbody>
</table>
</div>
-<nav class="action-buttons">
- <a href="firewall_aliases_edit.php?tab=<?=$tab?>" role="button" class="btn btn-success">
- <?=gettext("add new alias");?>
+<nav class="action-buttons" style="margin-top: 10px;">
+ <a href="firewall_aliases_edit.php?tab=<?=$tab?>" role="button" class="btn btn-success btn-sm">
+ <i class="fa fa-plus" style="font-size:15px; vertical-align: middle; margin-right: 6px;"></i>
+ <?=gettext("Add");?>
</a>
- <a href="firewall_aliases_import.php" role="button" class="btn btn-default">
- <?=gettext("bulk import");?>
+ <a href="firewall_aliases_import.php" role="button" class="btn btn-default btn-sm">
+ <i class="fa fa-download" style="font-size:15px; vertical-align: middle; margin-right: 6px;"></i>
+ <?=gettext("Import");?>
</a>
</nav>
-<?php
-
-print_info_box(gettext('Aliases act as placeholders for real hosts, networks or ports. They can be used to minimize the number ' .
- 'of changes that have to be made if a host, network or port changes.' . '<br />' .
- 'You can enter the name of an alias instead of the host, network or port where indicated. The alias will be resolved according to the list above.' . '<br />' .
- 'If an alias cannot be resolved (e.g. because you deleted it), the corresponding element (e.g. filter/NAT/shaper rule) will be considered invalid and skipped.'));
+<!-- Information section. Icon ID must be "showinfo" and the information <div> ID must be "infoblock".
+ That way jQuery (in pfenseHelpers.js) will automatically take care of the display. -->
+<div>
+<i class="fa fa-info-circle icon-pointer" style="color: #337AB7;; font-size:20px; margin-left: 10px; margin-bottom: 10px;" id="showinfo" title="<?=gettext('More information')?>"></i>
+ <div id="infoblock">
+ <?=print_info_box(gettext( 'Aliases act as placeholders for real hosts, networks or ports. They can be used to minimize the number ' .
+ 'of changes that have to be made if a host, network or port changes. <br />' .
+ 'You can enter the name of an alias instead of the host, network or port where indicated. The alias will be resolved according to the list above.' . '<br />' .
+ 'If an alias cannot be resolved (e.g. because you deleted it), the corresponding element (e.g. filter/NAT/shaper rule) will be considered invalid and skipped.'), info)?>
+ </div>
+</div>
+<?php
include("foot.inc");
OpenPOWER on IntegriCloud