mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 20:37:59 +01:00
23 lines
649 B
Text
23 lines
649 B
Text
h1 Your Reports
|
|
.block
|
|
.block__header
|
|
span.block__header__title Reports
|
|
- route = fn p -> Routes.report_path(@conn, :index, p) end
|
|
= render PhilomenaWeb.PaginationView, "_pagination.html", page: @reports, route: route, conn: @conn
|
|
|
|
.block__content
|
|
table.table
|
|
thead
|
|
tr
|
|
th State
|
|
th Reported Thing
|
|
th Reason
|
|
th Opened
|
|
tbody
|
|
= for r <- @reports do
|
|
tr
|
|
td class=report_row_class(r)
|
|
= pretty_state(r)
|
|
td = link_to_reported_thing(@conn, r.reportable)
|
|
td = r.reason
|
|
td = pretty_time(r.created_at)
|