diff options
author | jim-p <jimp@pfsense.org> | 2013-01-28 09:59:18 -0500 |
---|---|---|
committer | jim-p <jimp@pfsense.org> | 2013-01-28 09:59:18 -0500 |
commit | f2ea45ef4717f489d40e93d392fa3355d22141a6 (patch) | |
tree | 01ae5741821b4a3aca845229cc6ca43f922ea4b4 /usr | |
parent | af982472816c43827177e499011b92531ba40d72 (diff) | |
download | pfsense-f2ea45ef4717f489d40e93d392fa3355d22141a6.zip pfsense-f2ea45ef4717f489d40e93d392fa3355d22141a6.tar.gz |
Add header to DHCP and DHCPv6 static mappings tables
Diffstat (limited to 'usr')
-rwxr-xr-x | usr/local/www/services_dhcp.php | 4 | ||||
-rw-r--r-- | usr/local/www/services_dhcpv6.php | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/usr/local/www/services_dhcp.php b/usr/local/www/services_dhcp.php index 37e25be..7579aee 100755 --- a/usr/local/www/services_dhcp.php +++ b/usr/local/www/services_dhcp.php @@ -1142,6 +1142,10 @@ include("head.inc"); <?php if (!is_numeric($pool) && !($act == "newpool")): ?> <table class="tabcont" width="100%" border="0" cellpadding="0" cellspacing="0"> <tr> + <td colspan="5" valign="top" class="listtopic"><?=gettext("DHCP Static Mappings for this interface.");?></td> + <td> </td> + </tr> + <tr> <td width="7%" class="listhdrr"><?=gettext("Static ARP");?></td> <td width="18%" class="listhdrr"><?=gettext("MAC address");?></td> <td width="15%" class="listhdrr"><?=gettext("IP address");?></td> diff --git a/usr/local/www/services_dhcpv6.php b/usr/local/www/services_dhcpv6.php index 0465edf..4c49fd5 100644 --- a/usr/local/www/services_dhcpv6.php +++ b/usr/local/www/services_dhcpv6.php @@ -843,6 +843,10 @@ display_top_tabs($tab_array); </table> <table class="tabcont" width="100%" border="0" cellpadding="0" cellspacing="0"> <tr> + <td colspan="4" valign="top" class="listtopic"><?=gettext("DHCPv6 Static Mappings for this interface.");?></td> + <td> </td> + </tr> + <tr> <td width="25%" class="listhdrr"><?=gettext("DUID");?></td> <td width="15%" class="listhdrr"><?=gettext("IPv6 address");?></td> <td width="20%" class="listhdrr"><?=gettext("Hostname");?></td> |