From dafa62e4e35c2d432fda97d7561e66f5522ccccd Mon Sep 17 00:00:00 2001 From: Simon Rettberg Date: Mon, 4 Feb 2019 15:47:41 +0100 Subject: Write update timestamp to html output --- main.py | 3 ++- style.css | 10 +++++++++- template.html | 2 +- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/main.py b/main.py index 61c5159..ea13990 100755 --- a/main.py +++ b/main.py @@ -261,10 +261,11 @@ for entry in reversed(logEntries[cut_amount:]): + entry.msg + '') # Replace the %CONTENT% in the template with the actual html code. +now = datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S") html = open('template.html') html2 = open('status.html', 'w') for line in html: - html2.write(line.replace('%CONTENT%', code).replace('%LOG%', log)) + html2.write(line.replace('%CONTENT%', code).replace('%LOG%', log).replace('%NOW%', now)) html.close() html2.close() diff --git a/style.css b/style.css index 5ebd06e..ee868d9 100644 --- a/style.css +++ b/style.css @@ -1,8 +1,9 @@ html { - background: #ffffff; + background: #fff; font: normal 100%/1.4 sans-serif; margin: unset; height: 100%; + color: #000; } body { @@ -200,3 +201,10 @@ a:hover { .log_item:hover { background-color: #efeeee; } + +.now-footer { + text-align: right; + font-size: 10pt; + color: #999; +} + diff --git a/template.html b/template.html index 3638df5..b0c1d3c 100644 --- a/template.html +++ b/template.html @@ -35,7 +35,7 @@ - + -- cgit v1.2.3-55-g7522