<%- I18n.t('javascripts.notes.show.title', { id: note.id }) %>

<% note.comments.forEach(function (comment) { %>
<% if (comment.user) { %> <%= I18n.t('javascripts.notes.show.event', { action: comment.action, user: comment.user, user_url: comment.user_url, time: comment.date }) %> <% } else { %> <%- I18n.t('javascripts.notes.show.anonymous_event', { action: comment.action, time: comment.date }) %> <% } %>
<%= comment.html %>
<% }) %> <% if (note.status == "open") { %>

<% } %>