#!/usr/bin/env python3 import sys 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') form = funct.form serv = form.getvalue('serv') try: user, user_id, role, token, servers, user_services = funct.get_users_params() except Exception: pass try: funct.check_login(user_id, token, service=3) except Exception as e: print(f'error {e}') sys.exit() funct.page_for_admin(level=2) try: user_status, user_plan = funct.return_user_status() except Exception as e: user_status, user_plan = 0, 0 funct.logging('Roxy-WI server', f'Cannot get a user plan: {e}', roxywi=1) 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, user_status=user_status, user_plan=user_plan, token=token ) print(output_from_parsed_template)