Forum | Last Post |
---|---|
<%= link(forum.name, to: ~p"/forums/#{forum}") %>
<%= forum.description %>
|
<%= if forum.last_post do %>
<%= link(forum.last_post.topic.title, to: ~p"/forums/#{forum.last_post.topic.forum}/topics/#{forum.last_post.topic}") %>
<%= link("Go to post", to: ~p"/forums/#{forum.last_post.topic.forum}/topics/#{forum.last_post.topic}?#{[post_id: forum.last_post.id]}" <> "#post_#{forum.last_post.id}") %> by <%= render(PhilomenaWeb.UserAttributionView, "_anon_user.html", object: forum.last_post, conn: @conn) %> <%= pretty_time(forum.last_post.created_at) %> <% end %> |