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

  4. <% } %>