• <% if (comment.authorUrl) { %> <%= comment.authorName %> <% } else { %>

    <%= comment.authorName %>

    <% } %>

    <%= (comment.deleted != null && comment.deleted) ? "Comment deleted by the author" : comment.comment %>

    <% if ( comment.parentId == null ) { %> <% if (currentUser){ %> Reply <%= _.template(formTemplate, { currentUser: currentUser, formClass: 'reply-form', commentId: comment.id })%> <% if (comment.authorId === currentUser.id) { %> Delete <% } %> <% } %> <% } else { %> <% if (currentUser && comment.authorId === currentUser.id) { %> Delete <% } %> <% } %>