philomena/lib/philomena_web/templates/admin/report/show.html.slime

49 lines
1.9 KiB
Text
Raw Normal View History

2019-12-08 18:45:37 +01:00
h1 Showing Report
p
= link_to_reported_thing @conn, @report.reportable
article.block.communication
.block__content.flex.flex--no-wrap
.flex__fixed.spacing-right
= render PhilomenaWeb.UserAttributionView, "_anon_user_avatar.html", object: @report, conn: @conn
.flex__grow.communication__body
span.communication__body__sender-name = render PhilomenaWeb.UserAttributionView, "_anon_user.html", object: @report, awards: true, conn: @conn
br
= render PhilomenaWeb.UserAttributionView, "_anon_user_title.html", object: @report, conn: @conn
.communication__body__text
=<> @body
2019-12-08 18:45:37 +01:00
.block__content.communication__options
.flex.flex--wrap.flex--spaced-out
div
' Reported
= pretty_time @report.created_at
.flex__right
=> link_to_ip @conn, @report.ip
=> link_to_fingerprint @conn, @report.fingerprint
div
' User-Agent:
code
= @report.user_agent
2019-12-17 18:29:18 +01:00
= if assigns[:mod_notes] do
h4 Mod Notes
= render PhilomenaWeb.Admin.ModNoteView, "_table.html", mod_notes: @mod_notes, conn: @conn
2019-12-17 18:33:16 +01:00
= link "Add New Note", to: Routes.admin_mod_note_path(@conn, :new, notable_id: @report.id, notable_type: "Report")
2019-12-17 18:29:18 +01:00
2019-12-08 18:45:37 +01:00
p
= if @report.user do
=> link "Send PM", to: Routes.conversation_path(@conn, :new, recipient: @report.user.name), class: "button button--link"
= if @report.open do
=> link "Close", to: Routes.admin_report_close_path(@conn, :create, @report), class: "button", data: [method: "post"]
2019-12-08 18:45:37 +01:00
= if current?(@report.admin, @conn.assigns.current_user) do
=> link "Release", to: Routes.admin_report_claim_path(@conn, :delete, @report), class: "button", data: [method: "delete"]
2019-12-08 18:45:37 +01:00
- else
=> link "Claim", to: Routes.admin_report_claim_path(@conn, :create, @report), class: "button", data: [method: "post"]
2019-12-08 18:45:37 +01:00
2019-12-17 18:29:18 +01:00
= link "Back", to: Routes.admin_report_path(@conn, :index), class: "button button-link"