Files
fetsite/app/views/comments/_comments.html.erb
2015-08-01 12:03:01 +02:00

13 lines
394 B
Plaintext

<% unless comments.nil? || comments.empty? %>
<div class="contentbox" style="border-right:none;border-bottom:none; border-top:none">
<ul class="unstyled media-list">
<% comments.each do |c| %>
<li class="media"><%= render c %></li>
<% end %>
</ul>
</div>
<% if comments.first.root? %>
<%= paginate comments, :remote=>true , :theme=>'twitter-bootstrap'%>
<% end %>
<% end %>