chiya/lib/chiya_web/controllers/comment_html/index.html.heex

26 lines
935 B
Text
Raw Normal View History

2023-05-09 16:18:10 +02:00
<.header>
<.icon name="hero-document-text" /> Comments
<:subtitle>Comments are attached to notes</:subtitle>
</.header>
<.table id="comments" rows={@comments} row_click={&JS.navigate(~p"/admin/comments/#{&1}")}>
<:col :let={comment} label="Author"><%= comment.author_name %></:col>
<:col :let={comment} label="Inserted at"><%= from_now(comment.inserted_at) %></:col>
<:col :let={comment} label="Approved at"><%= from_now(comment.approved_at) %></:col>
<:action :let={comment}>
<div class="sr-only">
<.link navigate={~p"/admin/comments/#{comment}"}>Show</.link>
</div>
</:action>
<:action :let={comment}>
<.link href={~p"/admin/comments/#{comment}"} method="delete" data-confirm="Are you sure?">
Delete
</.link>
</:action>
2023-05-09 16:24:46 +02:00
<:action :let={comment}>
2023-05-09 16:18:10 +02:00
<div class="sr-only">
<.link navigate={~p"/admin/comments/#{comment}/approve"}>Approve</.link>
</div>
</:action>
</.table>