2020-05-02 11:35:28 -07:00
|
|
|
%span.d-none.d-sm-inline.text-muted
|
2014-12-05 11:21:15 -08:00
|
|
|
- unless user_signed_in?
|
2014-12-07 03:46:25 -08:00
|
|
|
- if a.smile_count > 0
|
2015-05-03 18:39:41 -07:00
|
|
|
%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 12:15:51 -08:00
|
|
|
- if user_signed_in?
|
|
|
|
- if current_user.smiled? a
|
2020-05-02 11:35:28 -07:00
|
|
|
%button.btn.btn-link.answerbox__action{type: :button, name: 'ab-smile', data: { a_id: a.id, action: :unsmile }}
|
|
|
|
%i.fa.fa-fw.fa-frown-o
|
2014-12-05 11:21:15 -08:00
|
|
|
%span{id: "ab-smile-count-#{a.id}"}= a.smile_count
|
2014-11-30 12:15:51 -08:00
|
|
|
- else
|
2020-05-02 11:35:28 -07:00
|
|
|
%button.btn.btn-link.answerbox__action{type: :button, name: 'ab-smile', data: { a_id: a.id, action: :smile }}
|
|
|
|
%i.fa.fa-fw.fa-smile-o
|
2014-12-05 11:21:15 -08:00
|
|
|
%span{id: "ab-smile-count-#{a.id}"}= a.smile_count
|
2014-12-26 15:37:42 -08:00
|
|
|
- unless @display_all
|
2020-05-02 11:35:28 -07:00
|
|
|
%button.btn.btn-link.answerbox__action{type: :button, name: 'ab-comments', data: { a_id: a.id, state: :hidden }}
|
|
|
|
%i.fa.fa-fw.fa-comments
|
2014-12-26 15:37:42 -08:00
|
|
|
%span{id: "ab-comment-count-#{a.id}"}= a.comment_count
|
2014-12-26 17:26:51 -08:00
|
|
|
- if user_signed_in?
|
2014-12-27 06:31:34 -08:00
|
|
|
.btn-group
|
2015-01-02 19:29:43 -08:00
|
|
|
%button.btn.btn-default.btn-sm.dropdown-toggle{data: { toggle: :dropdown }, aria: { expanded: :false }}
|
2014-12-26 17:26:51 -08:00
|
|
|
%span.caret
|
2020-04-19 14:13:39 -07:00
|
|
|
.dropdown-menu.dropdown-menu-right{role: :menu}
|
2015-04-21 05:22:32 -07:00
|
|
|
- if Subscription.is_subscribed(current_user, a)
|
2020-04-19 14:13:39 -07:00
|
|
|
-# fun joke should subscribe?
|
|
|
|
%a.dropdown-item{href: '#', data: { a_id: a.id, action: 'ab-submarine', torpedo: "no" }}
|
|
|
|
%i.fa.fa-anchor
|
|
|
|
= t 'views.actions.unsubscribe'
|
2015-04-20 18:12:11 -07:00
|
|
|
- else
|
2020-04-19 14:13:39 -07:00
|
|
|
%a.dropdown-item{href: '#', data: { a_id: a.id, action: 'ab-submarine', torpedo: "yes" }}
|
|
|
|
%i.fa.fa-anchor
|
|
|
|
= t 'views.actions.subscribe'
|
2014-12-26 17:26:51 -08:00
|
|
|
- if privileged? a.user
|
2020-04-19 14:13:39 -07:00
|
|
|
%a.dropdown-item.text-danger{href: '#', data: { a_id: a.id, action: 'ab-destroy' }}
|
|
|
|
%i.fa.fa-trash-o
|
|
|
|
= t 'views.actions.return'
|
2015-01-01 15:38:59 -08:00
|
|
|
- unless a.user == current_user
|
2020-04-19 14:13:39 -07:00
|
|
|
%a.dropdown-item{href: '#', data: { a_id: a.id, action: 'ab-report' }}
|
|
|
|
%i.fa.fa-exclamation-triangle
|
2020-04-26 08:13:31 -07:00
|
|
|
= t 'views.actions.report'
|