Fixed server struct. Added version to panel

This commit is contained in:
2024-02-27 20:41:11 +02:00
parent 0236fcb78c
commit ffead299fc
3 changed files with 12 additions and 9 deletions

View File

@ -31,6 +31,7 @@ log = logging.getLogger("OutFleet")
SERVERS = list()
CLIENTS = dict()
VERSION = '1'
HOSTNAME = ""
app = Flask(__name__)
CORS(app)
@ -92,6 +93,7 @@ def index():
return render_template(
"index.html",
SERVERS=SERVERS,
VERSION=VERSION,
nt=request.args.get("nt"),
nl=request.args.get("nl"),
selected_server=request.args.get("selected_server"),