From 5d6562dfbfbd17682645696e90319a4a919aabbb Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Fri, 30 Oct 2020 18:31:21 +0000 Subject: [PATCH] Show mobile links header --- webinterface.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/webinterface.py b/webinterface.py index 42fcac20..7e02237b 100644 --- a/webinterface.py +++ b/webinterface.py @@ -5954,6 +5954,12 @@ def htmlLinksMobile(cssCache: {}, baseDir: str, editor = isEditor(baseDir, nickname) htmlStr = htmlHeader(cssFilename, profileStyle) + htmlStr += \ + '\n' + + htmlStr += '
' + \ + headerButtonsFrontScreen(translate, nickname, + 'links', authorized) + '
' htmlStr += \ getLeftColumnContent(baseDir, nickname, domainFull, httpPrefix, translate, @@ -6005,7 +6011,7 @@ def htmlNewswireMobile(cssCache: {}, baseDir: str, nickname: str, htmlStr = htmlHeader(cssFilename, profileStyle) htmlStr += \ '\n' - + htmlStr += '
' + \ headerButtonsFrontScreen(translate, nickname, 'newswire', authorized) + '
'