Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This script will gather and render all comments that the recipient has permission to view. e.g. Internal Comments are not rendered for Customers.

Code Block
<tr>
    <td>
        <table>
            #set ( $comments = $jemhUtils.filterRestrictedComments($context.issue.fields.comment.comments) )
            #if ( $comments.size() > 0 )
                $jemhUtils.setCommentRendered()
          
 #end
 
          #foreach ($aComment in $comments)
                <tr>
                    <td>                
                        <div>
                       
    <strong>$jemhUtils.getUserDescription($aComment.author)</strong>

                           <em>$aComment.updated.asText():</em>

                           <p>$jemhUtils.wikiToHtml($aComment.body.asText())</p>
                        </div>
         
          </td>
                </tr>
            #end
        </table>
    </tr>
</tr>