h2 Do-Not-Post Requests

= form_for :dnp_entry, ~p"/admin/dnp_entries", [method: "get", class: "hform"], fn f ->
  .field
    = text_input f, :q, name: :q, value: @conn.params["q"], class: "input hform__text", placeholder: "Search query", autocapitalize: "none"
    = submit "Search", class: "hform__button button"

- route = fn p -> ~p"/admin/dnp_entries?#{p}" end
- pagination = render PhilomenaWeb.PaginationView, "_pagination.html", page: @dnp_entries, route: route, params: [states: state_param(@conn.params["states"])]

.block
  .block__header
    = pagination

    span.block__header__title Display Only:
    => link "All Open", to: ~p"/admin/dnp_entries?#{[states: ~W(requested claimed rescinded acknowledged)]}"
    => link "Listed", to: ~p"/admin/dnp_entries?#{[states: ~W(listed)]}"
    => link "Rescinded", to: ~p"/admin/dnp_entries?#{[states: ~W(rescinded acknowledged)]}"
    => link "Closed", to: ~p"/admin/dnp_entries?#{[states: ~W(closed)]}"

  .block__content
      table.table
        thead
          tr
            td Tag
            td Requesting User
            td Type
            td Conditions
            td Status
            td Created
            td Modified
            td Options

        tbody
          = for {body, request} <- @dnp_entries do
            tr
              td
                = render PhilomenaWeb.TagView, "_tag.html", tag: request.tag, conn: @conn

              td
                = link request.requesting_user.name, to: ~p"/profiles/#{request.requesting_user}"

              td
                = request.dnp_type

              td
                = body

              td class=dnp_entry_row_class(request)
                => pretty_state(request)

                = if request.modifying_user do
                  ' by
                  = link request.modifying_user.name, to: ~p"/profiles/#{request.modifying_user}"

              td
                = pretty_time(request.created_at)

              td
                = pretty_time(request.updated_at)

              td
                => link "Show", to: ~p"/dnp/#{request}"
                ' &bull;
                => link "Send PM", to: ~p"/conversations/new?#{[recipient: request.requesting_user.name]}"

                = case request.aasm_state do
                  - s when s in ["requested", "claimed"] ->
                    ' &bull;
                    => link "Claim", to: ~p"/admin/dnp_entries/#{request}/transition?#{[state: "claimed"]}", data: [method: "post", confirm: "Are you really, really sure?"]
                    ' &bull;
                    => link "Approve", to: ~p"/admin/dnp_entries/#{request}/transition?#{[state: "listed"]}", data: [method: "post", confirm: "Are you really, really sure?"]
                    ' &bull;
                    => link "Close", to: ~p"/admin/dnp_entries/#{request}/transition?#{[state: "closed"]}", data: [method: "post", confirm: "Are you really, really sure?"]

                  - "listed" ->
                    ' &bull;
                    => link "Rescind", to: ~p"/admin/dnp_entries/#{request}/transition?#{[state: "rescinded"]}", data: [method: "post", confirm: "Are you really, really sure?"]
                    ' &bull;
                    = link "Close", to: ~p"/admin/dnp_entries/#{request}/transition?#{[state: "closed"]}", data: [method: "post", confirm: "Are you really, really sure?"]

                  - s when s in ["rescinded", "acknowledged"] ->
                    ' &bull;
                    => link "Claim", to: ~p"/admin/dnp_entries/#{request}/transition?#{[state: "acknowledged"]}", data: [method: "post", confirm: "Are you really, really sure?"]
                    ' &bull;
                    = link "Close", to: ~p"/admin/dnp_entries/#{request}/transition?#{[state: "closed"]}", data: [method: "post", confirm: "Are you really, really sure?"]

                  - _state ->
                    ' &bull;
                    => link "Claim", to: ~p"/admin/dnp_entries/#{request}/transition?#{[state: "claimed"]}", data: [method: "post", confirm: "Are you really, really sure?"]