mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 12:37:58 +01:00
44 lines
1.7 KiB
Text
44 lines
1.7 KiB
Text
elixir:
|
|
route = fn p -> Routes.conversation_path(@conn, :index, p) end
|
|
pagination = render PhilomenaWeb.PaginationView, "_pagination.html", page: @conversations, route: route, conn: @conn
|
|
|
|
h1 My Conversations
|
|
.block
|
|
.block__header.page__header
|
|
.page__pagination = pagination
|
|
|
|
.page__info
|
|
a href=Routes.conversation_path(@conn, :new)
|
|
i.fa.fa-paper-plane>
|
|
' Create New Conversation
|
|
|
|
.block__content
|
|
table.table.table--communication-list
|
|
thead
|
|
tr
|
|
th.table--communication-list__name Conversation
|
|
th.table--communication-list__stats With
|
|
th.table--communication-list__options Options
|
|
tbody
|
|
= for {c, count} <- @conversations do
|
|
tr class=conversation_class(@conn.assigns.current_user, c)
|
|
td.table--communication-list__name
|
|
=> link c.title, to: Routes.conversation_path(@conn, :show, c)
|
|
|
|
.small-text.hidden--mobile
|
|
=> count
|
|
= pluralize("message", "messages", count)
|
|
' ; started
|
|
= pretty_time(c.created_at)
|
|
' , last message
|
|
= pretty_time(c.last_message_at)
|
|
|
|
td.table--communication-list__stats
|
|
= render PhilomenaWeb.UserAttributionView, "_user.html", object: %{user: other_party(@current_user, c)}, conn: @conn
|
|
td.table--communication-list__options
|
|
=> link "Last message", to: last_message_path(@conn, c, count)
|
|
' •
|
|
=> link "Hide", to: Routes.conversation_hide_path(@conn, :create, c), data: [method: "post"], data: [confirm: "Are you really, really sure?"]
|
|
|
|
.block__header.block__header--light.page__header
|
|
.page__pagination = pagination
|