Files
fetsite/app/views/comments/_comments.html.erb
Andreas Stephanides fbd51caf3e pagination update
2014-09-24 14:39:59 +02:00

13 lines
357 B
Plaintext

<% unless 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 %>