8 lines
490 B
Plaintext
8 lines
490 B
Plaintext
<div class="comment <%= "author" if c.author == @post.author %>" id="comment-<%= c.id %>">
|
|
<span class="comment-info"><%= link_user c.author %> <%= c.created_at.strftime("%e. %b %Y, %H:%m") %>
|
|
<% if mod? || c.author.is?(current_user) %>
|
|
<div class="editlink"><%= link_to "edit", edit_blogpost_comment_path(c.blogpost, c) %></div>
|
|
<% end %>
|
|
</span>
|
|
<div class="comment-content"><%= h(c.content).gsub(/(\s*?[\r\n]){3,}/, "\n\n").gsub("\n", "<br>").html_safe %></div>
|
|
</div> |