Revert "Clean up dashboard zone tabs"

This reverts commit fc39cc40ee.
This commit is contained in:
Matt Scott
2023-03-04 11:27:44 -05:00
parent 9003b3f6c8
commit 5f2fc514df
3 changed files with 37 additions and 51 deletions

View File

@ -227,6 +227,15 @@ def ensure_list(l):
yield from l
class customBoxes:
boxes = {
"reverse": (" ", " "),
"ip6arpa": ("ip6", "%.ip6.arpa"),
"inaddrarpa": ("in-addr", "%.in-addr.arpa")
}
order = ["reverse", "ip6arpa", "inaddrarpa"]
def pretty_domain_name(domain_name):
# Add a debugging statement to print out the domain name
print("Received domain name:", domain_name)