From 33f139b38637ce79b78b585a6aa220235a82d5e8 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sat, 3 Oct 2020 17:48:05 +0100 Subject: [PATCH] Right column container --- webinterface.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/webinterface.py b/webinterface.py index 9e8cb814..d75292c7 100644 --- a/webinterface.py +++ b/webinterface.py @@ -5295,6 +5295,9 @@ def getRightColumnContent(baseDir: str, nickname: str, domainFull: str, if os.path.isfile(themeRightColumnImageFilename): copyfile(themeRightColumnImageFilename, rightColumnImageFilename) + htmlStr += \ + '\n
\n' + # show the image at the top of the column editImageClass = 'rightColEdit' if os.path.isfile(rightColumnImageFilename): @@ -5325,6 +5328,9 @@ def getRightColumnContent(baseDir: str, nickname: str, domainFull: str, htmlStr += ' \n' else: htmlStr += '
\n' + + htmlStr += \ + '
\n' return htmlStr