<#assign listComments = paginator.pageItems>
<@paginationSitePageLinks paginator=paginator/>
<#if listComments?? && listComments?has_content>
<#list listComments as comment>
<#if comment.dateLastModif != comment.dateComment>
#i18n{module.extend.comment.view_comments.labelLastModified} ${comment.dateLastModif!}
#if>
@Extender[${comment.idComment},Comment,rating,{show:"all"}]@

<#if use_bbcode>
${comment.BBCodeComment!}
<#else>
${comment.comment!}
#if>
<#if comment.listSubComments?? && 0 < comment.listSubComments?size>
class="commentComments"#if>>
<#list comment.listSubComments as subComment>
#i18n{module.extend.comment.view_comments.labelPosted} ${subComment.dateComment!} #i18n{module.extend.comment.view_comments.labelBy} ${subComment.name!}
<#if comment.dateLastModif != subComment.dateComment>
#i18n{module.extend.comment.view_comments.labelLastModified} ${subComment.dateLastModif!}
#if>
<#if subComment.isAdminComment>
${adminBadge!}
#if>
<#if registeredUserEmail?? >
<#if subComment.email == registeredUserEmail && subComment.numberSubComments <= 0 >
<#if canDeleteComments?has_content && canDeleteComments>
#if>
#if>
#if>
<#if use_bbcode>
${subComment.BBCodeComment!}
<#else>
${subComment.comment!}
#if>
#list>
#if>
#list>
<@paginationSitePageLinks paginator=paginator/>
<#else>
#i18n{module.extend.comment.view_comments.noComments}
#if>