ensl.org/app/views/comments/_comment.html.erb
Luke Barratt ef83ec88f5 Added form view styling
Improved articles styling
Improved bbcode to html formatting
HTML and CSS refactorings
Moved Extra into concerns
Changed repo URL to read-only for deploys
Fixes quotes in comments
2014-04-12 02:35:42 +01:00

27 lines
972 B
Text

<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(#{comment.id}, 'comments')" %>
<% 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>