forked from indymedia/epicyon
Line lengths
parent
286c9c1d6f
commit
f614694738
|
@ -5508,7 +5508,8 @@ def htmlPersonOptions(translate: {}, baseDir: str,
|
||||||
optionsStr += ' <div class="optionsAvatar">\n'
|
optionsStr += ' <div class="optionsAvatar">\n'
|
||||||
optionsStr += ' <center>\n'
|
optionsStr += ' <center>\n'
|
||||||
optionsStr += ' <a href="' + optionsActor + '">\n'
|
optionsStr += ' <a href="' + optionsActor + '">\n'
|
||||||
optionsStr += ' <img loading="lazy" src="' + optionsProfileUrl + '"/></a>\n'
|
optionsStr += ' <img loading="lazy" src="' + optionsProfileUrl + \
|
||||||
|
'"/></a>\n'
|
||||||
optionsStr += \
|
optionsStr += \
|
||||||
' <p class="optionsText">' + translate['Options for'] + \
|
' <p class="optionsText">' + translate['Options for'] + \
|
||||||
' @' + getNicknameFromActor(optionsActor) + '@' + \
|
' @' + getNicknameFromActor(optionsActor) + '@' + \
|
||||||
|
@ -5521,7 +5522,8 @@ def htmlPersonOptions(translate: {}, baseDir: str,
|
||||||
if xmppAddress:
|
if xmppAddress:
|
||||||
optionsStr += \
|
optionsStr += \
|
||||||
'<p class="imText">' + translate['XMPP'] + \
|
'<p class="imText">' + translate['XMPP'] + \
|
||||||
': <a href="xmpp:' + xmppAddress + '">' + xmppAddress + '</a></p>\n'
|
': <a href="xmpp:' + xmppAddress + '">' + \
|
||||||
|
xmppAddress + '</a></p>\n'
|
||||||
if matrixAddress:
|
if matrixAddress:
|
||||||
optionsStr += \
|
optionsStr += \
|
||||||
'<p class="imText">' + translate['Matrix'] + ': ' + \
|
'<p class="imText">' + translate['Matrix'] + ': ' + \
|
||||||
|
|
Loading…
Reference in New Issue