2020-05-02 20:35:28 +02:00
|
|
|
%span.d-none.d-sm-inline.text-muted
|
2020-11-16 18:18:42 +01:00
|
|
|
- if !user_signed_in? && a.smile_count.positive?
|
|
|
|
%button.btn.btn-info.btn-sm{ name: 'ab-smile', disabled: true }
|
|
|
|
%i.fa.fa-smile-o
|
|
|
|
%span{ id: "ab-smile-count-#{a.id}" }= a.smile_count
|
2014-11-30 21:15:51 +01:00
|
|
|
- if user_signed_in?
|
|
|
|
- if current_user.smiled? a
|
2020-05-10 14:22:04 +02:00
|
|
|
%button.btn.btn-link.answerbox__action{ type: :button, name: 'ab-smile', data: { a_id: a.id, action: :unsmile } }
|
2020-05-02 20:35:28 +02:00
|
|
|
%i.fa.fa-fw.fa-frown-o
|
2020-05-10 14:22:04 +02:00
|
|
|
%span{ id: "ab-smile-count-#{a.id}" }= a.smile_count
|
2014-11-30 21:15:51 +01:00
|
|
|
- else
|
2020-05-10 14:22:04 +02:00
|
|
|
%button.btn.btn-link.answerbox__action{ type: :button, name: 'ab-smile', data: { a_id: a.id, action: :smile } }
|
2020-05-02 20:35:28 +02:00
|
|
|
%i.fa.fa-fw.fa-smile-o
|
2020-05-10 14:22:04 +02:00
|
|
|
%span{ id: "ab-smile-count-#{a.id}" }= a.smile_count
|
|
|
|
- unless display_all
|
|
|
|
%button.btn.btn-link.answerbox__action{ type: :button, name: 'ab-comments', data: { a_id: a.id, state: :hidden } }
|
2020-05-02 20:35:28 +02:00
|
|
|
%i.fa.fa-fw.fa-comments
|
2020-05-10 14:22:04 +02:00
|
|
|
%span{ id: "ab-comment-count-#{a.id}" }= a.comment_count
|
2021-12-26 22:06:52 +01:00
|
|
|
.btn-group
|
|
|
|
%button.btn.btn-link.answerbox__action{ data: { toggle: :dropdown }, aria: { expanded: false } }
|
|
|
|
%i.fa.fa-fw.fa-share-alt{ title: 'Share' }
|
|
|
|
.dropdown-menu.dropdown-menu-right{ role: :menu }
|
2021-12-26 23:28:46 +01:00
|
|
|
%a.dropdown-item{ href: twitter_share_url(a), target: '_blank' }
|
2021-12-26 22:06:52 +01:00
|
|
|
%i.fa.fa-fw.fa-twitter
|
|
|
|
Share on Twitter
|
2021-12-26 23:28:46 +01:00
|
|
|
%a.dropdown-item{ href: tumblr_share_url(a), target: '_blank' }
|
2021-12-26 22:06:52 +01:00
|
|
|
%i.fa.fa-fw.fa-tumblr
|
|
|
|
Share on Tumblr
|
|
|
|
%a.dropdown-item{ href: '#', name: 'ab-share' }
|
|
|
|
Share on other apps...
|
2014-12-27 02:26:51 +01:00
|
|
|
- if user_signed_in?
|
2014-12-27 15:31:34 +01:00
|
|
|
.btn-group
|
2020-05-10 14:22:04 +02:00
|
|
|
%button.btn.btn-default.btn-sm.dropdown-toggle{ data: { toggle: :dropdown }, aria: { expanded: false } }
|
2014-12-27 02:26:51 +01:00
|
|
|
%span.caret
|
2020-05-10 14:22:04 +02:00
|
|
|
.dropdown-menu.dropdown-menu-right{ role: :menu }
|
2015-04-21 14:22:32 +02:00
|
|
|
- if Subscription.is_subscribed(current_user, a)
|
2020-04-19 23:13:39 +02:00
|
|
|
-# fun joke should subscribe?
|
2020-05-10 14:22:04 +02:00
|
|
|
%a.dropdown-item{ href: '#', data: { a_id: a.id, action: 'ab-submarine', torpedo: 'no' } }
|
2020-04-19 23:13:39 +02:00
|
|
|
%i.fa.fa-anchor
|
|
|
|
= t 'views.actions.unsubscribe'
|
2015-04-21 03:12:11 +02:00
|
|
|
- else
|
2020-05-10 14:22:04 +02:00
|
|
|
%a.dropdown-item{ href: '#', data: { a_id: a.id, action: 'ab-submarine', torpedo: 'yes' } }
|
2020-04-19 23:13:39 +02:00
|
|
|
%i.fa.fa-anchor
|
|
|
|
= t 'views.actions.subscribe'
|
2014-12-27 02:26:51 +01:00
|
|
|
- if privileged? a.user
|
2020-05-10 14:22:04 +02:00
|
|
|
%a.dropdown-item.text-danger{ href: '#', data: { a_id: a.id, action: 'ab-destroy' } }
|
2020-04-19 23:13:39 +02:00
|
|
|
%i.fa.fa-trash-o
|
|
|
|
= t 'views.actions.return'
|
2015-01-02 00:38:59 +01:00
|
|
|
- unless a.user == current_user
|
2020-05-10 14:22:04 +02:00
|
|
|
%a.dropdown-item{ href: '#', data: { a_id: a.id, action: 'ab-report' } }
|
2020-04-19 23:13:39 +02:00
|
|
|
%i.fa.fa-exclamation-triangle
|
2020-05-10 14:22:04 +02:00
|
|
|
= t 'views.actions.report'
|
2021-08-05 18:31:35 +02:00
|
|
|
- if current_user.has_role? :administrator
|
2021-08-06 13:38:24 +02:00
|
|
|
%a.dropdown-item{ href: rails_admin_path_for_resource(a), target: '_blank' }
|
2021-08-05 18:31:35 +02:00
|
|
|
%i.fa.fa-gears
|
|
|
|
View in Kontrollzentrum
|