2019-12-05 05:53:56 +01:00
|
|
|
= if Enum.any?(@posts) do
|
|
|
|
.block
|
|
|
|
.block__header
|
2023-11-23 17:07:49 +01:00
|
|
|
i.fa.fa-pen-square
|
|
|
|
| Recent Forum Posts
|
2019-12-05 05:53:56 +01:00
|
|
|
|
|
|
|
.block__content
|
|
|
|
.block
|
|
|
|
= for post <- @posts do
|
|
|
|
.block__content.alternating-color
|
2019-12-05 19:32:53 +01:00
|
|
|
' Post
|
2024-06-06 22:28:35 +02:00
|
|
|
=> link pretty_time(post.created_at), to: ~p"/forums/#{post.topic.forum}/topics/#{post.topic}?#{[post_id: post]}" <> "#post_#{post.id}"
|
2019-12-05 19:32:53 +01:00
|
|
|
' in topic
|
2024-06-06 22:28:35 +02:00
|
|
|
=> link post.topic.title, to: ~p"/forums/#{post.topic.forum}/topics/#{post.topic}"
|
2023-11-23 17:07:49 +01:00
|
|
|
hr.separator.separator--secondary
|
2024-06-06 22:28:35 +02:00
|
|
|
a.button href=~p"/posts?#{[pq: "user_id:#{@user.id}"]}"
|
2023-11-23 17:07:49 +01:00
|
|
|
i.fa.fa-eye>
|
|
|
|
| View all
|