mirror of https://gitlab.com/bashrc2/epicyon
Show help on shares timeline
parent
4b3c579265
commit
94f0e48072
|
@ -829,6 +829,7 @@ def _htmlSharesTimeline(translate: {}, pageNumber: int, itemsPerPage: int,
|
||||||
' </center>\n'
|
' </center>\n'
|
||||||
|
|
||||||
separatorStr = htmlPostSeparator(baseDir, None)
|
separatorStr = htmlPostSeparator(baseDir, None)
|
||||||
|
ctr = 0
|
||||||
for published, item in sharesJson.items():
|
for published, item in sharesJson.items():
|
||||||
showContactButton = False
|
showContactButton = False
|
||||||
if item['actor'] != actor:
|
if item['actor'] != actor:
|
||||||
|
@ -840,6 +841,10 @@ def _htmlSharesTimeline(translate: {}, pageNumber: int, itemsPerPage: int,
|
||||||
htmlIndividualShare(actor, item, translate,
|
htmlIndividualShare(actor, item, translate,
|
||||||
showContactButton, showRemoveButton)
|
showContactButton, showRemoveButton)
|
||||||
timelineStr += separatorStr
|
timelineStr += separatorStr
|
||||||
|
ctr += 1
|
||||||
|
|
||||||
|
if ctr == 0:
|
||||||
|
timelineStr += _getHelpForTimeline(baseDir, 'tlshares')
|
||||||
|
|
||||||
if not lastPage:
|
if not lastPage:
|
||||||
timelineStr += \
|
timelineStr += \
|
||||||
|
|
Loading…
Reference in New Issue