openstreetmap-website/app/assets/javascripts/templates/notes/show.jst.ejs
2012-10-14 10:17:17 +01:00

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>
<% }) %>