2 <h2><%- I18n.t('javascripts.notes.show.title', { id: note.id }) %></h2>
3 <% note.comments.forEach(function (comment) { %>
5 <small class="deemphasize">
6 <% if (comment.user) { %>
7 <%- I18n.t('javascripts.notes.show.event', {
8 action: comment.action, user: comment.user, time: comment.date
11 <%- I18n.t('javascripts.notes.show.anonymous_event', {
12 action: comment.action, time: comment.date
20 <% if (note.status == "open") { %>
22 <textarea name="text" cols="40" rows="5"></textarea>
25 <input type="submit" name="close" value="<%- I18n.t('javascripts.notes.show.close') %>" data-url="<%- note.close_url %>">
26 <input type="submit" name="comment" value="<%- I18n.t('javascripts.notes.show.comment') %>" data-url="<%- note.comment_url %>" disabled="1">