mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 20:37:59 +01:00
39 lines
2.2 KiB
Text
39 lines
2.2 KiB
Text
article.block.communication id="comment_#{@comment.id}"
|
|
.block__content.flex.flex--no-wrap
|
|
.flex__fixed.spacing-right
|
|
= render PhilomenaWeb.UserAttributionView, "_anon_user_avatar.html", object: @comment, conn: @conn
|
|
.flex__grow.communication__body
|
|
span.communication__body__sender-name = render PhilomenaWeb.UserAttributionView, "_anon_user.html", object: @comment, awards: true, conn: @conn
|
|
.communication__body__text
|
|
= if @comment.hidden_from_users do
|
|
strong.comment_deleted
|
|
' Deletion reason:
|
|
=> @comment.deletion_reason
|
|
- else
|
|
==<> @body
|
|
|
|
.block__content.communication__options
|
|
.flex.flex--wrap.flex--spaced-out
|
|
= render PhilomenaWeb.CommentView, "_comment_options.html", comment: @comment, conn: @conn
|
|
/- if can?(:hide, Comment)
|
|
/ .js-staff-action
|
|
/ - if !comment.hidden_from_users && !comment.destroyed_content
|
|
/ =<> link_to '#', class: 'communication__interaction togglable-delete-form-link', 'data-click-toggle': "#inline-del-form-comment-#{comment.id}" do
|
|
/ i.fa.fa-times
|
|
/ =<> 'Delete'
|
|
/ - elsif comment.hidden_from_users && !comment.destroyed_content
|
|
/ =<> link_to image_comment_hide_path(comment.image, comment), data: { confirm: t('are_you_sure') }, method: :delete, class: 'communication__interaction' do
|
|
/ i.fa.fa-check
|
|
/ =<> 'Restore'
|
|
/ - if can?(:manage, Comment)
|
|
/ =<> link_to image_comment_path(comment.image, comment), method: :delete, data: { confirm: t('are_you_sure') }, class: 'communication__interaction' do
|
|
/ i.fa.fa-times
|
|
/ =<> 'Delete Contents'
|
|
/ - if can?(:manage, Comment)
|
|
/ .communication__info
|
|
/ =<> link_to_ip(comment.ip)
|
|
/ .communication__info
|
|
/ =<> link_to_fingerprint(comment.fingerprint, comment.user_agent)
|
|
/ = form_tag image_comment_hide_path(comment.image, comment), class: 'togglable-delete-form hidden flex', id: "inline-del-form-comment-#{comment.id}"
|
|
/ = text_field_tag :deletion_reason, nil, class: 'input input--wide', placeholder: 'Deletion Reason', id: "inline-del-reason-comment-#{comment.id}", required: true
|
|
/ = submit_tag 'Delete', class: 'button'
|