12 lines
341 B
Text
12 lines
341 B
Text
<h2><%- I18n.t('javascripts.notes.show.title', { id: note.id }) %></h2>
|
|
<% note.comments.forEach(function (comment) { %>
|
|
<p>
|
|
<small class="deemphasize">
|
|
<%- I18n.t('javascripts.notes.show.comment', {
|
|
action: comment.action, user: comment.user, time: comment.date
|
|
}) %>
|
|
</small>
|
|
<br/>
|
|
<%- comment.text %>
|
|
</p>
|
|
<% }) %>
|