]> git.openstreetmap.org Git - rails.git/blob - app/assets/javascripts/templates/notes/show.jst.ejs
038ff5ebde705976c875a018f93f63dfb2e8f56e
[rails.git] / app / assets / javascripts / templates / notes / show.jst.ejs
1 <h2><%- I18n.t('javascripts.notes.show.title', { id: note.id }) %></h2>
2 <% note.comments.forEach(function (comment) { %>
3 <p>
4   <small class="deemphasize">
5     <%- I18n.t('javascripts.notes.show.comment', {
6        action: comment.action, user: comment.user, time: comment.date
7     }) %>
8   </small>
9   <br/>
10   <%- comment.text %>
11 </p>
12 <% }) %>