mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 12:37:58 +01:00
50 lines
2.7 KiB
Text
50 lines
2.7 KiB
Text
article.block.communication id="post_#{@post.id}"
|
|
.block__content.flex.flex--no-wrap
|
|
.flex__fixed.spacing-right
|
|
= render PhilomenaWeb.UserAttributionView, "_anon_user_avatar.html", object: @post, conn: @conn
|
|
.flex__grow.communication__body
|
|
span.communication__body__sender-name = render PhilomenaWeb.UserAttributionView, "_anon_user.html", object: @post, awards: true, conn: @conn
|
|
br
|
|
= render PhilomenaWeb.UserAttributionView, "_anon_user_title.html", object: @post, conn: @conn
|
|
.communication__body__text
|
|
= if @post.hidden_from_users do
|
|
strong.comment_deleted
|
|
' Deletion reason:
|
|
=> @post.deletion_reason
|
|
- else
|
|
==<> @body
|
|
.block__content.communication__options
|
|
.flex.flex--wrap.flex--spaced-out
|
|
= render PhilomenaWeb.PostView, "_post_options.html", conn: @conn, post: @post
|
|
= if can?(@conn, :hide, @post) do
|
|
/ todo: make post deletion work
|
|
a.communication__interaction.togglable-delete-form-link href="#"
|
|
i.fa.fa-times
|
|
=<> "Delete"
|
|
= if can?(@conn, :manage, @post) do
|
|
.communication__info
|
|
=<> link_to_ip(@conn, @post.ip)
|
|
.communication__info
|
|
=<> link_to_fingerprint(@conn, @post.fingerprint)
|
|
/- if can?(:hide, Post)
|
|
/ .js-staff-action
|
|
/ - if !post.hidden_from_users && !post.destroyed_content
|
|
/ =<> link_to '#', class: 'communication__interaction togglable-delete-form-link', 'data-click-toggle': "#inline-del-form-post-#{post.id}" do
|
|
/ i.fa.fa-times
|
|
/ =<> 'Delete'
|
|
/ - elsif post.hidden_from_users && !post.destroyed_content
|
|
/ =<> link_to forum_topic_post_hide_path(post.topic.forum, post.topic, post), data: { confirm: t('are_you_sure') }, method: :delete, class: 'communication__interaction' do
|
|
/ i.fa.fa-check
|
|
/ =<> 'Restore'
|
|
/ - if can?(:manage, Post)
|
|
/ =<> link_to forum_topic_post_path(post.topic.forum, post.topic, post, deletion_reason: post.deletion_reason), method: :delete, data: { confirm: t('are_you_sure') }, class: 'communication__interaction' do
|
|
/ i.fa.fa-times
|
|
/ =<> 'Delete Contents'
|
|
/ - if can?(:manage, Post)
|
|
/ .communication__info
|
|
/ =<> link_to_ip(post.ip)
|
|
/ .communication__info
|
|
/ =<> link_to_fingerprint(post.fingerprint, post.user_agent)
|
|
/ = form_tag forum_topic_post_hide_path(post.topic.forum, post.topic, post), class: 'togglable-delete-form hidden flex', id: "inline-del-form-post-#{post.id}"
|
|
/ = text_field_tag :deletion_reason, nil, class: 'input input--wide', placeholder: 'Deletion Reason', id: "inline-del-reason-post-#{post.id}", required: true
|
|
/ = submit_tag 'Delete', class: 'button'
|