Separator after post

main
Bob Mottram 2020-11-18 19:28:33 +00:00
parent 127934698e
commit 58a9a49dc3
1 changed files with 3 additions and 2 deletions

View File

@ -581,9 +581,9 @@ def htmlTimeline(cssCache: {}, defaultTimeline: str,
if currTlStr:
itemCtr += 1
tlStr += currTlStr
if separatorStr:
tlStr += separatorStr
tlStr += currTlStr
if boxName == 'tlmedia':
tlStr += '</div>\n'
@ -698,9 +698,10 @@ def htmlSharesTimeline(translate: {}, pageNumber: int, itemsPerPage: int,
showRemoveButton = False
if item['actor'] == actor:
showRemoveButton = True
timelineStr += separatorStr + \
timelineStr += \
htmlIndividualShare(actor, item, translate,
showContactButton, showRemoveButton)
timelineStr += separatorStr
if not lastPage:
iconsPath = getIconsWebPath(baseDir)