ensl.org/app/views/comments/_comment.html.erb

28 lines
990 B
Text
Raw Normal View History

2014-04-06 14:14:03 +00:00
<div id="comment_<%= comment.id %>" class="comment">
<div class="comment-image">
<%= image_tag comment.user.profile.avatar.url, id: "user" %>
</div>
<div class="comment-content">
<h1>
<%= flag(comment.user.country) if comment.user.country %>
<%= namelink(comment.user) %>
<% if comment.user.team %> | <%= namelink comment.user.team %><% end %>
</h1>
<div class="controls">
<% if cuser %>
[
<%= link_to_function 'Q', "QuoteText('comments', #{comment.id}, '#{comment.user}')" %>
<% if comment.can_update? cuser %>
<%= link_to 'E', edit_comment_path(comment) %>
<% end %>
<% if comment.can_destroy? cuser %>
<%= link_to 'D', comment, :confirm => 'Are you sure?', :method => :delete %>
<% end %>
]
<% end %>
</div>
<%= comment.text_parsed.html_safe %>
<p class="comment-detail"><%= comment.created_at.strftime("%-d %B %Y, %H:%M") %></h2>
</div>
</div>