mirror of
https://github.com/pi-hole/web.git
synced 2025-12-24 12:48:29 +00:00
Merge pull request #824 from pi-hole/tweak/blocked_instead_of_Piholed
Change "Pi-holed" to "Blocked" on the Query Log
This commit is contained in:
@@ -183,7 +183,7 @@ $(document).ready(function() {
|
||||
case "1":
|
||||
blocked = true;
|
||||
color = "red";
|
||||
fieldtext = "Pi-holed"+dnssec_status;
|
||||
fieldtext = "Blocked (gravity)";
|
||||
buttontext = "<button style=\"color:green; white-space: nowrap;\"><i class=\"fa fa-pencil-square-o\"></i> Whitelist</button>";
|
||||
break;
|
||||
case "2":
|
||||
@@ -201,15 +201,21 @@ $(document).ready(function() {
|
||||
case "4":
|
||||
blocked = true;
|
||||
color = "red";
|
||||
fieldtext = "Pi-holed <br class='hidden-lg'>(wildcard)";
|
||||
buttontext = "";
|
||||
fieldtext = "Blocked <br class='hidden-lg'>(regex/wildcard)";
|
||||
buttontext = "<button style=\"color:green; white-space: nowrap;\"><i class=\"fa fa-pencil-square-o\"></i> Whitelist</button>" ;
|
||||
break;
|
||||
case "5":
|
||||
blocked = true;
|
||||
color = "red";
|
||||
fieldtext = "Pi-holed <br class='hidden-lg'>(blacklist)";
|
||||
fieldtext = "Blocked <br class='hidden-lg'>(blacklist)";
|
||||
buttontext = "<button style=\"color:green; white-space: nowrap;\"><i class=\"fa fa-pencil-square-o\"></i> Whitelist</button>" ;
|
||||
break;
|
||||
case "6":
|
||||
blocked = true;
|
||||
color = "red";
|
||||
fieldtext = "Blocked <br class='hidden-lg'>(external)";
|
||||
buttontext = "" ;
|
||||
break;
|
||||
default:
|
||||
blocked = false;
|
||||
color = "black";
|
||||
|
||||
Reference in New Issue
Block a user