10 lines
239 B
Text
10 lines
239 B
Text
<h2>Note <%- note.id %></h2>
|
|
<% note.comments.forEach(function (comment) { %>
|
|
<p>
|
|
<small class="deemphasize">
|
|
<%- comment.action %> by <%- comment.user %> at <%- comment.date %>
|
|
</small>
|
|
<br/>
|
|
<%- comment.text %>
|
|
</p>
|
|
<% }) %>
|