mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 20:37:59 +01:00
23 lines
1 KiB
Text
23 lines
1 KiB
Text
article.block.communication
|
|
= if not @message.approved and (can?(@conn, :approve, @message) or @message.from_id == @conn.assigns.current_user.id) do
|
|
.block__content
|
|
.block.block--fixed.block--danger
|
|
p
|
|
i.fas.fa-exclamation-triangle>
|
|
' This private message is pending approval from a staff member.
|
|
= if can?(@conn, :approve, @message) do
|
|
p
|
|
ul.horizontal-list
|
|
li
|
|
= link(to: Routes.conversation_message_approve_path(@conn, :create, @message.conversation_id, @message), data: [confirm: "Are you sure?"], method: "post", class: "button") do
|
|
i.fas.fa-check>
|
|
' Approve
|
|
|
|
.block__content.flex.flex--no-wrap
|
|
= render PhilomenaWeb.CommunicationView, "_body.html", object: %{user: @message.from}, noanon: true, body: @body, conn: @conn, name: "message"
|
|
|
|
.block__content.communication__options
|
|
.flex.flex--wrap.flex--spaced-out
|
|
div
|
|
' Posted
|
|
= pretty_time(@message.created_at)
|