Shares in a list

merge-requests/30/head
Bob Mottram 2023-08-23 20:30:58 +01:00
parent 7e6b43515b
commit fa3283a867
1 changed files with 5 additions and 3 deletions

View File

@ -2262,11 +2262,13 @@ def actor_attached_shares_as_html(actor_json: {}) -> str:
html_str = '' html_str = ''
for attach_item in actor_json['attachment']: for attach_item in actor_json['attachment']:
if _is_valueflows_attachment(attach_item): if _is_valueflows_attachment(attach_item):
if not html_str:
html_str = '<ul>\n'
html_str += \ html_str += \
'<a href="' + attach_item['href'] + '" tabindex="1">' + \ ' <li><a href="' + attach_item['href'] + '" tabindex="1">' + \
attach_item['name'] + '</a> ' attach_item['name'] + '</a></li>\n'
if html_str: if html_str:
html_str = html_str.strip() html_str = html_str.strip() + '</ul>\n'
return html_str return html_str