<#if poll?exists>
${I18n.getMessage("PostShow.pollTitle")} |
<#if (poll.open && canVoteOnPoll && !request.getParameter("viewResults")?exists)>
<#else>
<@presentation.renderPoll poll/>
#if>
|
#if>
${I18n.getMessage("PostShow.author")} |
${I18n.getMessage("PostShow.messageTitle")} |
<#assign rowColor = ""/>
<#list posts as post>
<#if post_index % 2 == 0>
<#assign rowColor = "row1">
<#else>
<#assign rowColor = "row2">
#if>
<#assign user = users.get(post.userId)/>
<#include "post_show_action_buttons_inc.htm"/>
|
<#assign rowspan = "3"/>
<#assign useSignature = (user.attachSignatureEnabled && user.signature?exists && user.signature?length > 0 && post.isSignatureEnabled())/>
<#if useSignature>
<#assign rowspan = "3"/>
<#else>
<#assign rowspan = "2"/>
#if>
<#include "post_show_user_inc.htm"/>
|
${post.text}
<#if post.hasAttachments() && (canDownloadAttachments || attachmentsEnabled)>
<#assign attachments = am.getAttachments(post.id, post.forumId)/>
<#include "post_show_attachments_inc.htm"/>
#if>
|
<#if useSignature>
${user.signature} |
#if>
<#include "post_show_user_profile_inc.htm"/>
|
 |
#list>
|