Newline position

main
Bob Mottram 2020-07-03 20:27:15 +01:00
parent 76c8ca03bc
commit 29012fb236
1 changed files with 4 additions and 4 deletions

View File

@ -5436,21 +5436,21 @@ def htmlPersonOptions(translate: {}, baseDir: str,
if receivingCalendarEvents(baseDir, nickname, domain,
optionsNickname, optionsDomainFull):
optionsStr += \
'<br><input type="checkbox" ' + \
'<input type="checkbox" ' + \
'class="profilecheckbox" name="onCalendar" ' + \
'selected>' + \
translate['Receive calendar events from this account'] + \
'<button type="submit" class="button" ' + \
'name="submitOnCalendar">' + \
translate['Submit'] + '</button>'
translate['Submit'] + '</button><br>'
else:
optionsStr += \
'<br><input type="checkbox" ' + \
'<input type="checkbox" ' + \
'class="profilecheckbox" name="onCalendar">' + \
translate['Receive calendar events from this account'] + \
'<button type="submit" class="button" ' + \
'name="submitOnCalendar">' + \
translate['Submit'] + '</button>'
translate['Submit'] + '</button><br>'
optionsStr += optionsLinkStr
optionsStr += \