<%- I18n.t('javascripts.notes.show.permalink', { id: note.id }) %>
<% if (note.comments.some(function (comment) { return !comment.user })) { %>
<%- I18n.t('javascripts.notes.show.anonymous_warning') %>
<% } %>
<% note.comments.forEach(function (comment) { %>
<% if (comment.user) { %>
<%= I18n.t('javascripts.notes.show.' + comment.action + '_by', {
user: comment.user, user_url: comment.user_url,
time: I18n.l("time.formats.long", comment.date)
}) %>
<% } else { %>
<%- I18n.t('javascripts.notes.show.' + comment.action + '_by_anonymous', {
time: I18n.l("time.formats.long", comment.date)
}) %>
<% } %>
<%= comment.html %>
<% }) %>
<% if (note.status == "open") { %>
<% } else { %>
<% } %>