Added renderer for group topics

This commit is contained in:
Manuel Cortez 2019-01-31 16:45:31 -06:00
parent 2e64e31a8f
commit 9e3ff74b98

View File

@ -249,4 +249,14 @@ def render_audio_message(audio_message, session=None):
["Voice message", "01:30:28"]"""
if audio_message == False:
return [_("Voice message not available"), "", ""]
return [seconds_to_string(audio_message["duration"])]
return [seconds_to_string(audio_message["duration"])]
def render_topic(topic, session):
user = session.get_user(topic["created_by"])
title = topic["title"]
comments = topic["comments"]
last_commenter = session.get_user(topic["updated_by"])
last_update = arrow.get(topic["updated"]).humanize(locale=languageHandler.curLang[:2])
last_commenter.update(date=last_update)
lastupdate = _("Last post by {user1_nom} {date}").format(**last_commenter)
return [user["user1_nom"], title, str(comments), lastupdate]