otwarchive-symphonyarchive/app/views/comments/_comment_abbreviated_list.html.erb
2026-03-11 22:22:11 +00:00

15 lines
464 B
Text

<% # this partial is used for an abbreviated list of unthreaded comments (by a single user) %>
<% # expects local "comments" %>
<dl class="comments index group">
<% comments.each do |comment| %>
<dt>
<%= comment_link_with_commentable_name(comment) %>
<span class="datetime"><%= time_in_zone(comment.created_at) %></span>
</dt>
<dd>
<%= truncate(comment.comment_content, length: 100, separator: ' ') %>
</dd>
<% end %>
</dl>