From d7d7820ed6d0c6150dadd61f9551e028032c23cf Mon Sep 17 00:00:00 2001 From: Phil Davis Date: Thu, 28 Jan 2016 22:57:45 +0545 Subject: Apply current UI standard to DHCP Pools table 1) "Actions" column heading. 2) Make action buttons fa-pencil fa-trash 3) Put a title for each button, so that the "Are you sure you wish to..." popup works nicely. --- src/usr/local/www/services_dhcp.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/usr/local/www/services_dhcp.php b/src/usr/local/www/services_dhcp.php index 682467d..f77e780 100644 --- a/src/usr/local/www/services_dhcp.php +++ b/src/usr/local/www/services_dhcp.php @@ -660,7 +660,7 @@ function build_pooltable() { $pooltbl .= '' . gettext("Pool Start") . ''; $pooltbl .= '' . gettext("Pool End") . ''; $pooltbl .= '' . gettext("Description") . ''; - $pooltbl .= ''; + $pooltbl .= '' . gettext("Actions") . ''; $pooltbl .= ''; $pooltbl .= ''; $pooltbl .= ''; @@ -679,9 +679,9 @@ function build_pooltable() { $pooltbl .= '' . htmlspecialchars($poolent['descr']) . ''; - $pooltbl .= '' . gettext('Edit') . ''; + $pooltbl .= ''; - $pooltbl .= '' . gettext('Delete') . ''; + $pooltbl .= ' '; $pooltbl .= ''; } $i++; -- cgit v1.1