From e1bd2cd7c4a2712ac065923c48b87729f04ec55a Mon Sep 17 00:00:00 2001 From: Marat Fayzullin Date: Sat, 11 Jan 2025 09:55:10 -0500 Subject: [PATCH] Made red/green colors brighter. --- owrx/controllers/services.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/owrx/controllers/services.py b/owrx/controllers/services.py index 7bb91ee3..90e5b4a4 100644 --- a/owrx/controllers/services.py +++ b/owrx/controllers/services.py @@ -45,15 +45,15 @@ class ServiceController(AuthorizationMixin, WebpageController): ts = Repeaters.lastDownloaded() if ts > 0: ts = datetime.fromtimestamp(ts).strftime("%H:%M:%S, %m/%d/%Y") - result += "
Repeaters database downloaded at {0}.
\n".format(ts) + result += "
Repeaters database downloaded at {0}.
\n".format(ts) else: - result += "
Repeaters database not downloaded.
\n" + result += "
Repeaters database not downloaded.
\n" ts = EIBI.lastDownloaded() if ts > 0: ts = datetime.fromtimestamp(ts).strftime("%H:%M:%S, %m/%d/%Y") - result += "
Shortwave schedule downloaded at {0}.
\n".format(ts) + result += "
Shortwave schedule downloaded at {0}.
\n".format(ts) else: - result += "
Shortwave schedule not downloaded.
\n" + result += "
Shortwave schedule not downloaded.
\n" return "

\n" + result + "

\n" @staticmethod