Retrospring/app/views/shared/_answerbox_buttons.html.haml

33 lines
1.3 KiB
Plaintext
Raw Normal View History

2014-11-30 12:14:55 -08:00
%span.hidden-xs.text-muted
- unless user_signed_in?
- if a.smile_count > 0
%span{id: "ab-smile-count-#{a.id}"}= a.smile_count
users smiled this
2014-11-30 12:15:51 -08:00
- if user_signed_in?
- if current_user.smiled? a
%button.btn.btn-info.btn-sm{type: :button, name: 'ab-smile', data: { a_id: a.id, action: :unsmile }}
2014-11-30 12:15:51 -08:00
%i.fa.fa-frown-o
%span{id: "ab-smile-count-#{a.id}"}= a.smile_count
2014-11-30 12:15:51 -08:00
- else
%button.btn.btn-info.btn-sm{type: :button, name: 'ab-smile', data: { a_id: a.id, action: :smile }}
2014-11-30 12:15:51 -08:00
%i.fa.fa-smile-o
%span{id: "ab-smile-count-#{a.id}"}= a.smile_count
2014-12-26 15:37:42 -08:00
- unless @display_all
%button.btn.btn-primary.btn-sm{type: :button, name: 'ab-comments', data: { a_id: a.id, state: :hidden }}
2014-12-26 15:37:42 -08:00
%i.fa.fa-comments
%span{id: "ab-comment-count-#{a.id}"}= a.comment_count
2014-12-26 17:26:51 -08:00
- if user_signed_in?
.btn-group
%button.btn.btn-default.btn-sm.dropdown-toggle{data: { toggle: :dropdown }, aria: { expanded: :false }}
2014-12-26 17:26:51 -08:00
%span.caret
%ul.dropdown-menu.dropdown-menu-right{role: :menu}
2014-12-26 17:26:51 -08:00
- if privileged? a.user
2014-12-26 17:29:57 -08:00
%li.text-danger
2014-12-27 05:59:48 -08:00
%a{href: '#', data: { a_id: a.id, action: 'ab-destroy' }}
2014-12-26 17:26:51 -08:00
%i.fa.fa-trash-o
Delete
2015-01-01 15:38:59 -08:00
- unless a.user == current_user
%li
%a{href: '#', data: { a_id: a.id, action: 'ab-report' }}
%i.fa.fa-exclamation-triangle
Report