* Created separate comments page * Optimised code for single comment and multiple comments * Indifual comments poage added * Minor header change * Created show method * Applied review changes * Removed like button from admin comments page
8 lines
235 B
Text
8 lines
235 B
Text
<h1 class="crayons-title">Comments</h1>
|
|
<%= paginate @comments %>
|
|
|
|
<div class="flex flex-col gap-2">
|
|
<%= render partial: "comment", collection: @comments, locals: { is_individual_comment: false } %>
|
|
</div>
|
|
|
|
<%= paginate @comments %>
|