philomena/lib/philomena_web/templates/image/comment/index.html.slime

23 lines
884 B
Text
Raw Normal View History

2019-11-12 03:38:51 +01:00
elixir:
route = fn p -> Routes.image_comment_path(@conn, :index, @image, p) end
pagination = render PhilomenaWeb.PaginationView, "_pagination.html", page: @comments, route: route
.block
2020-12-11 17:53:40 +01:00
.block__header.page__header
.page__pagination = pagination
.page__info
span.block__header__title
=<> @image.comments_count
=> pluralize("comment", "comments", @image.comments_count)
' posted
button.button#js-refresh-comments title="Refresh" data-disable-with="..."
i.fa.fa-sync
span.hide-mobile<> Refresh
2019-11-12 03:38:51 +01:00
2019-12-20 23:37:50 +01:00
= for {comment, body} <- @comments, not comment.destroyed_content or (can?(@conn, :show, comment) and not hide_staff_tools?(@conn)) do
2019-11-12 03:38:51 +01:00
= render PhilomenaWeb.CommentView, "_comment.html", comment: comment, body: body, conn: @conn
.block
2020-12-11 17:53:40 +01:00
.block__header.block__header--light.page__header
.page__pagination = pagination