mirror of https://github.com/Aidaho12/haproxy-wi
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
370 B
14 lines
370 B
7 years ago
|
#!/usr/bin/env python3
|
||
|
import html
|
||
|
import cgi
|
||
|
import funct
|
||
7 years ago
|
import ovw
|
||
7 years ago
|
|
||
|
funct.head("Overview")
|
||
|
funct.check_config()
|
||
|
funct.check_login()
|
||
7 years ago
|
funct.get_auto_refresh("Overview")
|
||
7 years ago
|
print("<script>if (cur_url[0] == 'overview.py') { $('#secIntervals').css('display', 'none');}</script>")
|
||
7 years ago
|
print('<script> window.onload = showOverview()</script><div id="ajax"></div>')
|
||
7 years ago
|
|
||
7 years ago
|
funct.footer()
|