mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 12:37:58 +01:00
41 lines
1.5 KiB
Text
41 lines
1.5 KiB
Text
.communication__options__post-time
|
|
span
|
|
' Posted
|
|
=> pretty_time(@comment.created_at)
|
|
|
|
a.button.button--primary href=Routes.image_comment_report_path(@conn, :new, @comment.image, @comment)
|
|
i.fa.fa-flag>
|
|
' Report
|
|
|
|
= if not is_nil(@comment.edited_at) and can?(@conn, :show, @comment) do
|
|
a.communication__options__edit-time 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
|
|
|
|
.flex.flex--normal-gap.flex--centered
|
|
- link_path = Routes.image_path(@conn, :show, @comment.image) <> "#comment_#{@comment.id}"
|
|
- safe_author = PhilomenaWeb.PostView.markdown_safe_author(@comment)
|
|
- quote_body = if @comment.hidden_from_users, do: "", else: @comment.body
|
|
|
|
a.button.button--primary title="Link to comment" href=link_path
|
|
i.fa.fa-link
|
|
' Link
|
|
|
|
a.button.button--primary.post-reply.post-reply-quote href=link_path data-reply-url=link_path data-author=safe_author data-post=quote_body
|
|
i.fa.fa-quote-right
|
|
' Quote
|
|
|
|
a.button.button--primary.post-reply href=link_path data-reply-url=link_path data-author=safe_author
|
|
i.fa.fa-reply
|
|
' Reply
|
|
|
|
= if can?(@conn, :edit, @comment) do
|
|
span.owner-options
|
|
strong
|
|
a.button.button--primary href=Routes.image_comment_path(@conn, :edit, @comment.image, @comment)
|
|
i.fas.fa-edit
|
|
' Edit
|