Checking for enabled lists

main
Bob Mottram 2021-10-21 20:05:38 +01:00
parent 48d3235b8f
commit 9e6f608c91
1 changed files with 7 additions and 10 deletions

View File

@ -1677,15 +1677,12 @@ def _htmlEditProfileFiltering(baseDir: str, nickname: str, domain: str,
200, '', False)
CWlistsStr = ''
if listsEnabled:
print('CWlistsStr 0: ' + str(CWlists))
for name, item in CWlists.items():
print('CWlistsStr: ' + name)
variableName = 'list' + name.replace(' ', '').replace("'", '')
listIsEnabled = False
if listsEnabled:
if name in listsEnabled:
listIsEnabled = True
else:
listIsEnabled = False
if translate.get(name):
name = translate[name]
CWlistsStr += editCheckBox(name, variableName, listIsEnabled)