From 15ac22d8eeb51b9e5d076017959fe5142164572e Mon Sep 17 00:00:00 2001 From: Taylor Helsper Date: Wed, 13 Dec 2023 22:25:01 -0600 Subject: [PATCH] Make HTML titles more consistent during startup --- rootfs/standard/var/www/mynode/mynode.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rootfs/standard/var/www/mynode/mynode.py b/rootfs/standard/var/www/mynode/mynode.py index bc21100e..389c4bd0 100644 --- a/rootfs/standard/var/www/mynode/mynode.py +++ b/rootfs/standard/var/www/mynode/mynode.py @@ -235,7 +235,7 @@ def index(): return render_template('state.html', **templateData) elif status == STATE_DRIVE_MOUNTED: templateData = { - "title": "Drive Mounted", + "title": "Starting", "header_text": "Starting...", "subheader_text": "Drive Mounted", "ui_settings": read_ui_settings() @@ -453,7 +453,7 @@ def index(): error_message = "Bitcoin has experienced an error. Please check the Bitcoin log on the status page." message = "
{}".format( get_message(include_funny=True) ) templateData = { - "title": "Status", + "title": "Starting", "header_text": "Starting...", "subheader_text": Markup("Launching MyNode Services{}".format(message)), "error_message": Markup(error_message + "

"),