haproxy-wi/app/ha.py

29 lines
756 B
Python
Raw Normal View History

2018-04-27 13:34:11 +00:00
#!/usr/bin/env python3
import funct
from jinja2 import Environment, FileSystemLoader
env = Environment(loader=FileSystemLoader('templates/'), autoescape=True)
template = env.get_template('ha.html')
print('Content-type: text/html\n')
funct.check_login(service=3)
funct.page_for_admin(level=2)
2019-12-04 13:38:07 +00:00
form = funct.form
serv = form.getvalue('serv')
2018-04-27 13:34:11 +00:00
try:
user, user_id, role, token, servers, user_services = funct.get_users_params()
except Exception:
pass
2019-09-15 11:51:09 +00:00
2018-04-27 13:34:11 +00:00
output_from_parsed_template = template.render(h2=1,
title="Create and configure HA cluster",
role=role,
user=user,
serv=serv,
selects=servers,
user_services=user_services,
token=token)
2019-12-04 13:38:07 +00:00
print(output_from_parsed_template)