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

26 lines
867 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>
2023-06-11 20:49:18 +02:00
<:action :let={_comment}>
<.link href="#" method="delete" data-confirm="Are you sure?">
2023-05-09 16:18:10 +02:00
Delete
</.link>
</:action>
2023-06-11 20:49:18 +02:00
<:action :let={_comment}>
2023-05-09 16:18:10 +02:00
<div class="sr-only">
2023-06-11 20:49:18 +02:00
<.link href="#">Approve</.link>
2023-05-09 16:18:10 +02:00
</div>
</:action>
</.table>