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