2019-10-05 02:51:56 +02:00
|
|
|
div
|
|
|
|
' Posted
|
|
|
|
=> pretty_time(@comment.created_at)
|
2019-12-04 14:13:10 +01:00
|
|
|
|
|
|
|
a.communication__interaction href=Routes.image_comment_report_path(@conn, :new, @comment.image, @comment)
|
|
|
|
i.fa.fa-flag>
|
|
|
|
' Report
|
|
|
|
|
2019-12-06 15:43:01 +01:00
|
|
|
= if not is_nil(@comment.edited_at) and can?(@conn, :read, @comment) do
|
|
|
|
br
|
|
|
|
a href=Routes.image_comment_history_path(@conn, :index, @comment.image, @comment)
|
|
|
|
' Edited
|
|
|
|
=> pretty_time(@comment.edited_at)
|
|
|
|
|
|
|
|
= if @comment.edit_reason not in [nil, ""] do
|
|
|
|
' because:
|
|
|
|
=> @comment.edit_reason
|
|
|
|
|
2019-10-05 02:51:56 +02:00
|
|
|
div
|
2019-11-27 02:45:57 +01:00
|
|
|
- link_path = Routes.image_path(@conn, :show, @comment.image) <> "#comment_#{@comment.id}"
|
|
|
|
- safe_author = PhilomenaWeb.PostView.textile_safe_author(@comment)
|
|
|
|
- quote_body = if @comment.hidden_from_users, do: "", else: @comment.body
|
|
|
|
|
2019-10-05 02:51:56 +02:00
|
|
|
a.communication__interaction title="Link to comment" href=link_path
|
|
|
|
i.fa.fa-link>
|
|
|
|
' Link
|
2019-11-27 02:45:57 +01:00
|
|
|
|
|
|
|
a.communication__interaction.post-reply.post-reply-quote href=link_path data-reply-url=link_path data-author=safe_author data-post=quote_body
|
2019-10-05 02:51:56 +02:00
|
|
|
i.fa.fa-quote-right>
|
|
|
|
' Quote
|
2019-11-27 02:45:57 +01:00
|
|
|
|
|
|
|
a.communication__interaction.post-reply href=link_path data-reply-url=link_path data-author=safe_author
|
2019-11-30 06:26:12 +01:00
|
|
|
i.fa.fa-reply>
|
2019-10-05 02:51:56 +02:00
|
|
|
' Reply
|
2019-12-06 15:43:01 +01:00
|
|
|
|
|
|
|
= if can?(@conn, :edit, @comment) do
|
|
|
|
span.owner-options
|
|
|
|
strong
|
|
|
|
a.communication__interaction href=Routes.image_comment_path(@conn, :edit, @comment.image, @comment)
|
2019-12-10 17:11:49 +01:00
|
|
|
i.fas.fa-edit>
|
2019-12-06 15:43:01 +01:00
|
|
|
' Edit
|