2 <h2><%- I18n.t('javascripts.notes.show.title', { id: note.id }) %></h2>
3 <% note.comments.forEach(function (comment) { %>
5 <small class="deemphasize">
6 <%- I18n.t('javascripts.notes.show.event', {
7 action: comment.action, user: comment.user, time: comment.date
14 <% if (note.status == "open") { %>
16 <textarea name="text" cols="40" rows="5"></textarea>
19 <input type="submit" name="close" value="<%- I18n.t('javascripts.notes.show.close') %>" id="note-close">
20 <input type="submit" name="comment" value="<%- I18n.t('javascripts.notes.show.comment') %>" id="note-comment">