#i18n{module.extend.comment.comment_info.labelAuthor}
#i18n{module.extend.comment.comment_info.labelName} : ${comment.name!} - #i18n{module.extend.comment.comment_info.labelSendTime} : ${comment.dateComment!}
#i18n{module.extend.comment.comment_info.labelEmail} : ${comment.email!} - #i18n{module.extend.comment.comment_info.labelIpAddress} : ${comment.ipAddress!}
<#if comment.isAdminComment>
${adminBadge!}
#if>
<#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.comment_info.labelAuthor}
#i18n{module.extend.comment.comment_info.labelName} : ${subComment.name!} - #i18n{module.extend.comment.comment_info.labelSendTime} : ${subComment.dateComment!}
#i18n{module.extend.comment.comment_info.labelEmail} : ${subComment.email!} - #i18n{module.extend.comment.comment_info.labelIpAddress} : ${subComment.ipAddress!}
<#if subComment.isAdminComment>
${adminBadge!}
#if>
#i18n{module.extend.comment.comment_info.labelComment}
<#if subComment.published>
#i18n{module.extend.comment.comment_info.statePublished}
<#else>
#i18n{module.extend.comment.comment_info.stateNotPublished}
#if>
<#if use_bbcode>
${subComment.BBCodeComment!}
<#else>
${subComment.comment!}
#if>
#list>
#if>