docbrown/app/views/admin/comments/index.html.erb
Rajat Talesra bc2d7702ee
Standalone "admin" page for each comment (#19644)
* 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
2023-06-30 00:31:07 +05:30

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