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.
28 lines
788 B
28 lines
788 B
#!/usr/bin/env python3
|
|
import os
|
|
import sql
|
|
import http
|
|
import funct
|
|
import sql
|
|
from jinja2 import Environment, FileSystemLoader
|
|
env = Environment(loader=FileSystemLoader('templates/'))
|
|
template = env.get_template('config.html')
|
|
|
|
print('Content-type: text/html\n')
|
|
funct.check_login()
|
|
|
|
try:
|
|
cookie = http.cookies.SimpleCookie(os.environ.get("HTTP_COOKIE"))
|
|
user_id = cookie.get('uuid')
|
|
user = sql.get_user_name_by_uuid(user_id.value)
|
|
servers = sql.get_dick_permit()
|
|
except:
|
|
pass
|
|
|
|
output_from_parsed_template = template.render(h2 = 1, title = "Show Map",
|
|
role = sql.get_user_role_by_uuid(user_id.value),
|
|
user = user,
|
|
onclick = "showMap()",
|
|
select_id = "serv",
|
|
selects = servers)
|
|
print(output_from_parsed_template) |