Add web address to person options

merge-requests/26/head
Bob Mottram 2022-01-04 10:36:04 +00:00
parent ced5acc8f6
commit f51a820ecc
1 changed files with 5 additions and 0 deletions

View File

@ -193,6 +193,11 @@ def html_person_options(default_timeline: str,
'<p class="imText">' + translate['Email'] + \
': <a href="mailto:' + \
email_address + '">' + remove_html(email_address) + '</a></p>\n'
if web_address:
options_str += \
'<p class="imText">🌐 ' + \
'<a href="' + remove_html(web_address) + '">' + \
web_address + '</a></p>\n'
if xmpp_address:
options_str += \
'<p class="imText">' + translate['XMPP'] + \