haproxy-wi/app/overview.py

14 lines
370 B
Python
Raw Normal View History

2018-02-06 04:39:43 +00:00
#!/usr/bin/env python3
import html
import cgi
import funct
import ovw
2018-02-06 04:39:43 +00:00
funct.head("Overview")
funct.check_config()
funct.check_login()
funct.get_auto_refresh("Overview")
2018-04-28 14:42:38 +00:00
print("<script>if (cur_url[0] == 'overview.py') { $('#secIntervals').css('display', 'none');}</script>")
print('<script> window.onload = showOverview()</script><div id="ajax"></div>')
2018-03-27 10:15:24 +00:00
2018-02-06 04:39:43 +00:00
funct.footer()