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

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