forked from indymedia/epicyon
Displaying of timelines on profile screen
parent
d87b66d847
commit
ed781f8655
|
@ -644,7 +644,7 @@ def htmlProfile(rssIconAtTop: bool,
|
|||
projectVersion,
|
||||
YTReplacementDomain,
|
||||
showPublishedDateOnly) + licenseStr
|
||||
if selected == 'following':
|
||||
elif selected == 'following':
|
||||
profileStr += \
|
||||
htmlProfileFollowing(translate, baseDir, httpPrefix,
|
||||
authorized, nickname,
|
||||
|
@ -652,7 +652,7 @@ def htmlProfile(rssIconAtTop: bool,
|
|||
wfRequest, personCache, extraJson,
|
||||
projectVersion, ["unfollow"], selected,
|
||||
usersPath, pageNumber, maxItemsPerPage)
|
||||
if selected == 'followers':
|
||||
elif selected == 'followers':
|
||||
profileStr += \
|
||||
htmlProfileFollowing(translate, baseDir, httpPrefix,
|
||||
authorized, nickname,
|
||||
|
@ -661,14 +661,14 @@ def htmlProfile(rssIconAtTop: bool,
|
|||
projectVersion, ["block"],
|
||||
selected, usersPath, pageNumber,
|
||||
maxItemsPerPage)
|
||||
if selected == 'roles':
|
||||
elif selected == 'roles':
|
||||
profileStr += \
|
||||
htmlProfileRoles(translate, nickname, domainFull,
|
||||
extraJson)
|
||||
if selected == 'skills':
|
||||
elif selected == 'skills':
|
||||
profileStr += \
|
||||
htmlProfileSkills(translate, nickname, domainFull, extraJson)
|
||||
if selected == 'shares':
|
||||
elif selected == 'shares':
|
||||
profileStr += \
|
||||
htmlProfileShares(actor, translate,
|
||||
nickname, domainFull,
|
||||
|
|
Loading…
Reference in New Issue