1. <% if (comments.length) { %> <% _.each(comments, function(comment) { %>
    1. <%- !_.isNull(comment.author.username) ? comment.author.username : removedAuthor %> <%= __('pim_enrich.entity.product.module.comment.header_comment', { user: '' + (!_.isNull(comment.author.fullName) ? comment.author.fullName : removedAuthor) + '' }) %> <% if (comment.author.username === username) { %> <% } %> <%- comment.created %>
      <%- comment.body %>
    2. <% _.each(comment.replies, function(reply) { %>
    3. <%- (!_.isNull(reply.author.username) ? reply.author.username : removedAuthor) %> <%= __('pim_enrich.entity.product.module.comment.header_reply', { user: '' + (!_.isNull(reply.author.fullName) ? reply.author.fullName : removedAuthor) + '' }) %> <% if (reply.author.username === username) { %> <% } %> <%- reply.created %>
      <%- reply.body %>
    4. <% }); %>
  2. <% }); %> <% } else { %>
  3. <%- emptyLabel %>

  4. <% } %>