diff --git a/webapp_profile.py b/webapp_profile.py index 404e43c47..b291e27cd 100644 --- a/webapp_profile.py +++ b/webapp_profile.py @@ -1226,6 +1226,7 @@ def htmlEditProfile(cssCache: {}, translate: {}, baseDir: str, path: str, adminNickname = getConfigParam(baseDir, 'admin') if adminNickname: if path.startswith('/users/' + adminNickname + '/'): + # Instance details section instanceDescription = \ getConfigParam(baseDir, 'instanceDescription') instanceDescriptionShort = \ @@ -1295,37 +1296,7 @@ def htmlEditProfile(cssCache: {}, translate: {}, baseDir: str, path: str, translate['Broch mode'] + '
\n' instanceStr += ' \n' - moderators = '' - moderatorsFile = baseDir + '/accounts/moderators.txt' - if os.path.isfile(moderatorsFile): - with open(moderatorsFile, "r") as f: - moderators = f.read() - moderatorsStr = '
' - moderatorsStr += ' ' + translate['Moderators'] + '
' - moderatorsStr += ' ' + \ - translate['A list of moderator nicknames. One per line.'] - moderatorsStr += \ - ' ' - moderatorsStr += '
\n' - - editors = '' - editorsFile = baseDir + '/accounts/editors.txt' - if os.path.isfile(editorsFile): - with open(editorsFile, "r") as f: - editors = f.read() - editorsStr = '
' - editorsStr += ' ' + translate['Site Editors'] + '
' - editorsStr += ' ' + \ - translate['A list of editor nicknames. One per line.'] - editorsStr += \ - ' ' - editorsStr += '
\n' - + # Themes section themes = getThemesList(baseDir) themesDropdown = '
' themesDropdown += ' ' + translate['Theme'] + '
' @@ -1360,7 +1331,42 @@ def htmlEditProfile(cssCache: {}, translate: {}, baseDir: str, path: str, '