mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-27 21:47:59 +01:00
table row
This commit is contained in:
parent
f28fcc59d0
commit
4b37a568c4
2 changed files with 13 additions and 12 deletions
|
@ -39,6 +39,6 @@ defmodule PhilomenaWeb.ConversationController do
|
||||||
messages =
|
messages =
|
||||||
%{messages | entries: Enum.zip(messages.entries, rendered)}
|
%{messages | entries: Enum.zip(messages.entries, rendered)}
|
||||||
|
|
||||||
render(conn, "index.html", conversation: conversation, messages: messages)
|
render(conn, "show.html", conversation: conversation, messages: messages)
|
||||||
end
|
end
|
||||||
end
|
end
|
|
@ -16,6 +16,7 @@ h1 My Conversations
|
||||||
th.table--communication-list__options Options
|
th.table--communication-list__options Options
|
||||||
tbody
|
tbody
|
||||||
= for c <- @conversations do
|
= for c <- @conversations do
|
||||||
|
tr
|
||||||
td.table--communication-list__name
|
td.table--communication-list__name
|
||||||
=> link c.title, to: Routes.conversation_path(@conn, :show, c)
|
=> link c.title, to: Routes.conversation_path(@conn, :show, c)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue